2021-11-16 10:40:37 +01:00
|
|
|
# Overflown
|
2021-06-25 14:20:52 +02:00
|
|
|
|
2021-11-28 17:52:17 +01:00
|
|
|
A Platformer centered around water and trash, made for the [Seajam](https://itch.io/jam/seajam).
|
|
|
|
|
|
|
|
## How to compile it
|
|
|
|
|
|
|
|
The game uses [python](https://www.python.org/) and [pygame](https://www.pygame.org/news).
|
|
|
|
|
|
|
|
Here's how to compile it using [pyinstaller](https://www.pyinstaller.org/)
|
|
|
|
|
|
|
|
### On Linux/Unix
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata"
|
|
|
|
```
|
|
|
|
|
|
|
|
### On Windows
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata;gamedata"
|
|
|
|
```
|