CodeQuest is a wrapper for pygame that simplifies the game making process, letting users create games with minimal or no knowledge of pygame. Great for beginners Learning Python.
- Install Python
- Clone the repo
- Go to the terminal and write
pip install .
- Create a New Python File in the same Directory
- Write the Code below
from CodeQuest import *
# Create a Game Instance
game = Game()
# Updates every frame
@game.on_update
def update():
pass
# Run Game
game.run()
- CodeQuest
- Game()
- audio.py
- objects.py
- Body()
-
RigidBody()
$${\color{lightblue}From \space Body}$$ - ParticleSystem()
- sprites.py
- tools.py
- ui.py