我试图让使用pyglet一个简单的GUI。
这里是我的代码:
button_texture = pyglet.image.load('button.png')
button = pyglet.sprite.Sprite(button_texture, x=135, y=window.height-65)
def on_mouse_press(x, y, button, modifiers):
if x > button and x < (button + button_texture.width):
if y > button and y < (button + button_texture.height):
run_program()
问题
该“button.png”将显示为“点击”里面的红色盒子。 并且应该开始run_program()。 但目前黄左下方是我必须单击以发起run_program()的地方。