Skip to content

Latest commit

 

History

History
67 lines (46 loc) · 1.48 KB

README.md

File metadata and controls

67 lines (46 loc) · 1.48 KB

3, 2, 5 Can you count?

A game in which you need to count how many goats are on the screen! It's harder than it sounds ;)

Credits

This game was created as part of the Global Game Jam 2024 using pygame and is licensed under CC BY-NC-SA 4.0.

Authors

  • Ana Borges
  • Nils Roth
  • Jorge Simões

Assets

The goat assets were created by Sevarihk and are distributed under CC-BY 4.0.

The font is the Minecraft Font by Craftron Gaming.

Run and generate executable

Requirements

  • Repository is cloned
  • A python environment with the packages listed in requirements.txt

Run

python3 main-window.py

Generate executable

Running the following will generate an executable in dist:

pyinstaller --onefile \
    --name 325-can-you-count \
    --add-data assets:assets \
    --add-data sounds:sounds \
    main-window.py
cp -r assets dist/
cp -r sounds dist/

The executable can be bundled for transport as follows:

tar -zcvf 3_2_5_can_you_count.tar.gz dist/

Run from executable

  1. Make sure you are in the same directory as the executable

  2. Run it as usual for your OS