作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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”显示为红色框,里面有“Click”。并且应该启动 run_program()。但目前左下角的黄色是我必须单击以启动 run_program() 的地方。
最佳答案
您正在将按钮(键码)与 X/Y 坐标进行比较。发生这种情况是因为函数参数 button
遮蔽了全局变量。另外,您应该使用按钮 x
、y
、width
和 height
属性。
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/
我正在尝试使用 pyglet 制作一个简单的 GUI。 这是我的代码: button_texture = pyglet.image.load('button.png') button = pyglet
我试图在单击鼠标后使用 Pyglet 将文本插入到窗口中。下面的代码创建窗口,当我单击屏幕时进行打印,但不会将文本添加到屏幕上。 有什么想法吗? 提前致谢。 import pyglet from py
我是一名优秀的程序员,十分优秀!