A simple 2D game engine implemented with python, using pygame!
Get to know us better at: https://desenho2018-1.github.io/simian/
You should have installed:
- Python v3.6.5
Follow these steps on a terminal to create a virtualenv:
$ python3.6 -m venv env
$ source env/bin/active
Then go to our simian folder (where you can see setup.py):
(env) $ pip install -r requirements.txt
(env) $ python setup.py build
And you ready to run simian!
Inside simian folder, run:
$ simian startproject
Simian will ask you some parameters, leave them empty and a demo pong game will be created. After that go to the pong folder and run the sample:
$ cd pong/
$ simian run
Then you're running your first game using simian.
To quit this virtual environment just type:
$ deactivate