Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

The game won’t open, just makes a noise.

Oh my ...! I just tested the build with many people I don't have a clue about why it could not work. What is your OS version ?

Win 11. Why don’t you export it as HTML5 so it is playable on web? the jam requires HTML5 OR all the other 3 (Win, OS-x, Linux) anyways

I've got some performance problem with the web version (and color issue) that I'm fixing right now. I hope it will be done soon enough.

Oh, where did you see you need the 3 othter platform?

Ok gotcha. Huh… I think they took that off… because I remember clearly that it said that you needed HTML5 or ALL the others… lol, you’re fine then.

The web build is available, I've still got some performance issue but it's playable. Still investigating.

Nice! really good, once the performance is fixed it should be fine. I clicked on yours because we had the same idea (or at least the fact that we did a snake themed one) but in 2D.

How did you handle the snake itself? I used Path2D/PathFollow2D but it comes with issues.

I will check out yours as soon as I can!

For the snake, I store the position of the snake head every frame and place the following body parts accordingly using a gap in relationship with the moving speed.

Path/Path2D is very useful but I tend to avoid using the PathFollow as it can be really restrictive. For the car I'm using the path but I made my own implementation for the follow so I can handle physics in a better way.

Ah cool, I was tried to do that at first, but had some issues (and I’m still a newbie), tried a lot of options but this was the one that worked the best at the end. Except that it come with lots of headaches, took a lot of my time lol.