gpt4 book ai didi

python pyglet on_mouse_press

转载 作者:行者123 更新时间:2023-12-01 05:26:29 24 4
gpt4 key购买 nike

我正在尝试使用 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()

enter image description here

问题

“button.png”显示为红色框,里面有“Click”。并且应该启动 run_program()。但目前左下角的黄色是我必须单击以启动 run_program() 的地方。

最佳答案

您正在将按钮(键码)与 X/Y 坐标进行比较。发生这种情况是因为函数参数 button 遮蔽了全局变量。另外,您应该使用按钮 xywidthheight 属性。

button_texture = pyglet.image.load('button.png')
button_sprite = pyglet.sprite.Sprite(button_texture, x=135, y=window.height-65)

def on_mouse_press(x, y, button, modifiers):
if x > button_sprite.x and x < (button_sprite.x + button_sprite.width):
if y > button_sprite.y and y < (button_sprite.y + button_sprite.height):
run_program()

我将您的全局变量 button 重命名为 button_sprite 以避免名称冲突。

关于python pyglet on_mouse_press,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21234381/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com