Arrow keys to move. Touch Controls work in progress Red is obstacle Purple twirly thingy is acid- it makes you die after 5 seconds. Yellow blocks are teleporters- They teleport you to the top of them Light Green makes you jump Now, you have gotten the pot of gold. You are safe now, but you need to learn some skills to pass these platformers. You apply for the school, but there is an entrance test- cross these obstacles and you will get admitted. Can you pass this platformer and get admitted to school?
I used a different algorithm for movement from the previous version .This allows for: Realistic jumping Realistic Gravity Realistic collisions Satisfying Movement I used a different algorithm for the movement as the old version of the back to school platformer. In this algorithm, the movement is nor directly bound to the keys. Instead, the keys set a variable to a specific value, and the sprite moves based on the value. The value is multiplied by a number less than one to allow the movement to stop slowly instead of abruptly, which makes the experience more satisfying. It does this because I changed the algorithm. For all my previous platformers, the player would repeatedly go beneath the ground then above the ground because the code was not synced properly. This meant the player was shaking and the platformer would sometimes not work. Now, all this is integrated into one function which allows the player to slightly hover above the ground to avoid glitches.