Neon Snake: Classic Game with a Modern Twist banner

Neon Snake: Classic Game with a Modern Twist

3 devlogs
5h 8m 52s

Neon Snake is a simple browser game where you control a snake to eat food and grow longer. Avoid hitting the walls or yourself. The game has bright neon colors and gets a little faster as your score increases.

Demo Repository

Loading README...

deforgetito

Available here: https://2forgetitouan.github.io/Neon_Snake/

I’ve added a “grace” system: when you touch a wall or your own tail, you get a short grace period to recover before it’s game over. I’ve also made the game’s animation super smooth thanks to a new way of handling the main loop. The neon effects, particles, and vibrations make the game feel more alive. Finally, everything is playable with the option to turn music and sound effects on or off.

Attachment
0
deforgetito

I made a cute logo :)
I already have a solid foundation, built in vanilla JS with Canvas 2D and a game loop with a 100-150ms delay depending on the difficulty. The snake, food, and particle objects manage the game state, and collisions are detected by coordinate comparison. The neon style uses Canvas gradients and CSS shadows with animations.

Attachment
0
deforgetito

I’m going to start a mini Snake game for the browser.
The idea: control a snake that eats food and grows.
First, I’ll set up the game board and movement logic.

Attachment
0