Simple Android Platformer



In the Simple Android Platformer game you control a small pink android tasked finding the purple android somewhere in the game world. The world consists of many floating platforms, some of which move up and down, and some of which move left to right. You must jump from platform to platform, moving higher and higher through the stage until you reach the platform with the purple android. If you get lost, or fall of a platform, you can reset your position back the starting point by pressing the 'r' key.

Notes:

For the collision detection (jumping on platforms) I use axis aligned bounding boxes. I borrowed and reworked code for the axis aligned bounding boxes from the open tissue project.