Time: 8 weeks (20h/week)
Team Size: 12 (6 programmers)
Engine: The Game Engine , Unity.
Language: C++ , C#
Fast paced runner game inspired by Super Meat Boy. This was our first game in the schools own “in house engine” where we had to work with Unity as an editor to import via JSON files into the engine.
The Dash
We had a lot of problems that the dash easily makes the player go through objects so i decided to do a distance ray check. If theres a collision by the ray then we know where we have to stop but we wanted to keep the dash speed. Idea Distance divded with speed = the time to get there. Time based dash!
Slow Motion, we decided to where we fetch the delta time we also slice it when we are in slowmotion mode so every object gets affected
The Collision
At the bottom of the player you see a line that shows the stick to the wall ray we use for wall jump.
Also hade problems when falling too fast so we extend the players collider when they are falling.