Comments

Log in with itch.io to leave a comment.

cool game man! how did you manage to make it playable in browser? did you used some library to compile it in javascript?

Thank you man! Itch.io actually supports the javascript game file if you run it through a html5 file first. So I just needed to create a html5 file that executed the js script inside it, then I uploaded both to Itch.io

(+1)

Did you convert the Python into JS? If you did, what did you use? I'm trying to make a game using PyGame and converting it to HTML but I can't find any options.

(+2)

At first I wrote the entire game in Python using PyGame but Itch.io doesn't support it. Unfortunately, I believe there isn't a reliable conversion between .py and .js files, my only alternative was to write everything again in javascript

ah ok. Thanks for your reply!