Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 1.06 KB

README.md

File metadata and controls

68 lines (48 loc) · 1.06 KB

Bullfrog

This is my first pygame project. It started as a frogger clone. It's now a strange mix between Frogger and Alien Invasion. There are 2 levels and 2 enemy types. The game will record and save your high score and the volume settings if you change them and press the save button in the settings menu.

Controls

Move left, right, up, and down with the arrow keys. Press 'esc' key to pause the game.

Installing Bullfrog


git clone https://github.com/ChaeDLR/Bullfrog.git

Mac OS venv


Create virtual environment files in your current directory

python3 -m venv (folder name)

Activate environment

source (folder name)/bin/activate

To deactivate venv

deactivate

Windows 10 venv


Create virtual environment files in your current directory

python -m venv (folder name)

Activate environment

(folder name)/Scripts/activate.bat

To deactivate venv

deactivate

Installing pygame


pip install pygame

Run the program


python bullfrog.py