Platformer made using pygame, centered around water and trash https://justayte.itch.io/overflown
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
theo@manjaro 2773ae5a54
Updated README to include .ico file in Pyinstaller's instruction
1 year ago
gamedata Avoid killing two times the same ennemy 1 year ago
.gitignore Initial commit 2 years ago
CREDITS.md Added myself to the credits 1 year ago
LICENSE Initial commit 2 years ago
README.md Updated README to include .ico file in Pyinstaller's instruction 1 year ago
icon.ico Updated README to include .ico file in Pyinstaller's instruction 1 year ago
launcher.py Premier commit 2 years ago

README.md

Overflown

A Platformer centered around water and trash, made for the Seajam.

How to compile it

The game uses python and pygame.

Here's how to compile it using pyinstaller

On Linux/Unix

pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata"

On Windows

pyinstaller launcher.py --onefile --noconsole --add-data "gamedata;gamedata" --icon icon.ico