Ren'Py Help with HTML5 sites like Newgrounds, Gamcore, etc

Thomas Turbating

Member
Game Developer
Dec 2, 2019
127
134
Hello guys!
I've been thinking about including my game on sites that support web-based games (HTML5) like gamcore, newgrounds, etc.

However, I'm kinda lost.
I saw that Ren'py can export the game in HTML5 format, but it seems like none of my video animations are present in these versions after compile.

Is there any way to create the web version including video animations?
Is there any guide teaching how to properly create the HTML5 versions?
I searched here on the forum, but I didn't find anything about it.

Any help in this regard is welcome!
Best regards! (y)
 

Zargon_games

Creating Games
Game Developer
Jan 22, 2020
703
3,474
You have to create a special version of your game for the web release, in which you have to replace all animations with image sequences, like:

show img001.png
pause 0.5
show img002.png

Yeah, I know... It's a pain in the ass , that's why some devs don't have web releases.
 

Thomas Turbating

Member
Game Developer
Dec 2, 2019
127
134
You have to create a special version of your game for the web release, in which you have to replace all animations with image sequences, like:

show img001.png
pause 0.5
show img002.png

Yeah, I know... It's a pain in the ass , that's why some devs don't have web releases.
Oops, I totally forgot to answer, i'm sorry!

About the post: Got it, it's a task of patience.
Even so, thanks for the help on this! ^^