Planetoid-Hazard is an Asteroids and Risk of Rain inspired game.
you will need...
- Python 3
- Pygame Version 2.6.1
- either download and unzip the file or pull this github repoository
- navigate to the root of the file (where main.py is located) via your prefered terminal
- first create a virtural enviorment by running
python3 -m venv venv- we now need to actiave our virtual enviorment
For Linux
source venv/bin/activate
For Windows
source venv/Scripts/activate
- lastly we need to install the required version of pygames in our virtual enviorment. Run the following command.
pip install -r requirements.txt- anytime you want to run the game, make sure your in your virtual enviroment (check step 4) and run
python3 main.py