Scummypy is a (Humongous Entertainment) SCUMM like game engine built with the Pygame library in Python. Its primary purpose is to help me learn Python, might as well make a game while so.
python --version
If Python is not installed, download it from: https://www.python.org/downloads/
On Windows, make sure “Add Python to PATH” is checked during install.
pip install pygame
Verify installation:
python -c "import pygame; print(pygame.version.ver)"
From Github download
scummypy (Folder containing all of the core Python)
game_state.py
main.py
python main.py
I use VSCode on Windows so I "Run Python File in Terminal" directly on the main.py file.
Troubleshooting VSCode
ModuleNotFoundError: No module named 'pygame'
This means VS Code is using the wrong Python interpreter.
- WindowsTV(Ryan)