pyfalldown is a platformer game built with pygame, inspired by the classic arcade era.
In this game, you guide a circular ball downward, navigating through platforms. Your objective is to collect triangles while avoiding squares. Be careful not to touch the top or bottom edges of the screen!
-
Using pip:
pip install pyfalldown
Then, run the game:
pyfalldown
or:
python -m pyfalldown
-
Run without installation using uv:
uvx pyfalldown
- The game is over if the ball hits the top or bottom edge of the screen.
- Collecting a triangle earns you a random score between 1 and 5 points.
- Hitting a square deducts a random 1 to 5 points from your score.
- Move ball using
Left
/Right
arrow keys.