You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
355 B
14 lines
355 B
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()
|
|
|