Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

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.