EndlessRunner*
Solo personal project | Oct-Nov 2024 (1m)
Key Points
- Multiplayer endless runner.
- Heavily based on C++.
Dynamicly spawn level instances while the players are running forward.
The player follows a spline, which allows you to make a level that start, goes and finish in any direction (hence the example level in an arc).
There is one spline per level instance, they are combine at runtime.
This means that all the inputs are clamped and dependent to the closest spline point from the player, the hardest part was to support any directions (since we aren't always moving in the X axis).
=== WIP ===