Initial commit of isometric Game Boy adventure prototype

This commit is contained in:
2026-06-20 16:30:15 +02:00
commit 20a5d8604b
17 changed files with 927 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from pyboy import PyBoy
def main():
pyboy = PyBoy('hello_iso.gb', window='null', cgb=False)
# Tick a few frames to let the map render
for _ in range(60 * 2):
pyboy.tick()
pyboy.screen.image.save('hello_iso_gb.png')
pyboy.stop()
print("Screenshot saved to hello_iso_gb.png")
if __name__ == "__main__":
main()