A small racing game made for LOWREZJAM 2024 that fits in 64x64 px, created with PICO-8.

Only a minimum viable game loop is implemented,
was not able to do the rest of the features due to the constant struggle with pico restrictions in the limited jam's timeline.

More to come in the post-compo version, stay tuned.

Controls

Use arrows to move,
x or z to brake.

Credit

StatusPrototype
PlatformsHTML5
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
AuthorGleb Volkov
GenreRacing
Made withPICO-8
TagsLOWREZJAM, PICO-8

Comments

Log in with itch.io to leave a comment.

Really surprised to see a racing entry for PICO-8 in this low resolution. I thought it wouldn’t work but the dynamic zoom level really helped with that.

Gameplay wise a new track, or a tune-able AI difficulty would be really nice addition for some replay-ability.

Also not sure if known, but you can start immediately instead of having to wait for the countdown sounds.

Quick question? How did you handle enemy AI? Are they following a pre-drawn line for the track?

Overall a nice little entry, I just wish it had more to it!

Thanks for the feedback! I had to cut almost all the features planned to make it in time.

The enemies AI is based on the "Steering Behaviors for Autonomous Characters" paper by Craig Reynolds. 
Here is a good reference implementation - https://natureofcode.com/autonomous-agents/

Are they following a pre-drawn line for the track?

Basically, you are right - opponents' cars are "seeking" point by point along the path used to draw a track polygon.