fogleman / Minecraft

Simple Minecraft-inspired program using Python and Pyglet
MIT License
5.21k stars 1.23k forks source link

How can pyglet cancel the function of pressing the esc key to exit #145

Open ghost opened 1 year ago

ghost commented 1 year ago

How can pyglet cancel the function of pressing the esc key to exit. Why does my pyglet program exit by pressing esc?
I haven't added this function myself.

shenjackyuanjie commented 1 year ago

you can look at the offical document of pyglet add try write window by

from pyglet.window import Window

class MyWindow(Window):
    ...
ghost commented 1 year ago

Thanks