Simple Race to the Exit type platform game using Python 3 and the Turtle module but using platforms that are not horizontal and adding some gif animation. Using platforms lying at an angle makes the platform collision check a little more interesting. The idea was based on the game Donkey Kong but I tried to keep things as simple as possible for teaching coding to my kids. I also included an example with a game class allowing a simple start/game over and restart screen. Feel free to look at the code below for any improvements/questions:
https://www.dropbox.com/sh/4awp0zyxn3...
It is much easier with horizontal platforms:
• Easy Race to exit platform game in Py...