Another tiny vertical scroller game made with Python and pygame.
Inspired by a demo for a public session on programming simple games conducted at The Lycaeum in Sep/2014.
Extra game logic and artwork by [email protected]
Key | Role |
---|---|
Arrows | Move your plane |
CTRL | Fire guns |
ENTER | Nuke all enemies (only once per level) |
- 2024.08.12 - initial version
- 2024.08.14 - difficulty level handling
- 2024.08.15 - energy bar added
- 2024.08.16 - parallax scrolling added
- 2024.08.16 - gun fires riffles to increase difficulty
- 2014.08.16 - improved bullet shape
- 2004.08.20 - intro screen added
- 2024.08.23 - end-of-level boss added
- 2024.08.23 - bonus score when killing boss
- pygame==2.6.0
Navigate to project folder
python3 -m venv .venv
cd .venv
cd bin
source activate
cd ../..
pip install pygame
python3 game.py
Navigate to project folder
python -m venv .venv
cd .venv
cd scripts
activate
cd ..\..
pip install pygame
python game.py