Exercise 2 - Marble Maze
About
This is the second exercise for the Intro to Game Programming class I'm taking for Fall 2022.
"WASD" or arrow keys to control
"R" to reset the room (do it if the physics stop working)
Over the summer I had a friend who was really into Super Monkey Ball Banana Mania, and he had me play it. I hate Monkey Ball. So I decided to make better Monkey Ball. I also took the opportunity of this project to learn how level loading works in Unity. In all my previous projects I would unload an entire scene and then replace it, but of course that means that I couldn't have objects survive between levels. But I found out that you can just load multiple scenes at once, so for this game I had a base scene with the required persistent objects and then loading and unloading levels along side it.