Simple maze runner built with Python and pygame, featuring raycast fog-of-war.
Two versions:
- CPU renderer:
main_cpu.py(pygame only) - OpenGL renderer:
main_gl.py(pygame + PyOpenGL)
Releases: https://github.com/aztechell/PyGameMaze/releases/tag/0.2
Run
pip install pygame PyOpenGL PyOpenGL_accelerate
python main_cpu.py
python main_gl.pyBuild
pip install pyinstaller
pyinstaller --onefile --windowed --name PyGameMaze-CPU main_cpu.py
pyinstaller --onefile --windowed --name PyGameMaze-GL main_gl.py