HTML in GDevelop I found how to do it

So, there are a lot of people asking about integrating HTML into GDevelop even myself but the answer was no until today I found a way to implement HTML into GDevelop take example of this game flappy bird | Play on gd.games it was made using HTML but I have a question should I tell it or not I feel like not because then people would just implement other games into develop and it would be bad for the engine but what’s your opinion

1 Like

If you do it could be helpful for the engine mainly because it allows more customization and more ways of making games

1 Like

We do this by taking the html file seeing its code using a code editor and use a online html to javascript code converter copy the javascript code and then paste it into gdevelop beacuse gdevelop supports js but I am still experimenting on this

That’s very interesting

1 Like

GD5 is already a JavaScript engine…

HTML is just markup. The HTML part of a browser game is just setting up the page itself, basically just “heres a frame ok now run this JS”. It is the JS that makes the game actually work.

So, there’s no need to “integrate HTML”. HTML is “put some text here, put this button there, get the colors and other styling from yadda yadda CSS file”.

1 Like