My entry for the VimJam2
https://justayte.itch.io/pinmik-panik
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
gamedata | 2 years ago | |
.gitignore | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 2 years ago | |
credits.md | 2 years ago | |
icon.png | 2 years ago | |
launcher.py | 2 years ago |
README.md
Pinmik Panik !
My entry for the VimJam2. The requirement was the word "boss", and the theme was "on the edge". An arcade game with little creatures, try to have the best highscore :D
I'll not maintain this repository past the jam's deadline, but feel free to fork it for your own projects.
Also, take a look at the credits file
How I compiled it
Depedencies
I'm using pygame, install it with
pip install pygame
With Linux/Unix
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata" --icon icon.png
With Windows
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata;gamedata" --icon icon.png