将鼠标悬停在Sprite对象Pyglet上?

时间:2019-01-03 05:40:48

标签: python events sprite mouse pyglet

我想知道是否有一种方法可以用Pyglet将鼠标悬停在Sprite对象上?

my_sprite = pyglet.sprite.Sprite(image, x, y)

在Tkinter中这样的事情:

sprite.bind(circle, "<Enter>", on_enter)

1 个答案:

答案 0 :(得分:0)

下面是一个演示代码,用于检测移动的gif精灵上的鼠标悬停,您可以尝试将其更改为自己喜欢的样式。

import pyglet
from pyglet.window import mouse


animation = pyglet.image.load_animation('ur_image_gif_path_like_xxx.gif')
bin = pyglet.image.atlas.TextureBin()
animation.add_to_texture_bin(bin)
sprite = pyglet.sprite.Sprite(img=animation)
window = pyglet.window.Window()

@window.event
def on_draw():
    window.clear()
    sprite.draw()

def update(dt):
    sprite.x += dt*10

@window.event
def on_mouse_motion(x, y, dx, dy):
    # print(x, y, dx, dy)
    image_width = sprite.image.get_max_width()
    image_height = sprite.image.get_max_height()
    if sprite.x+image_width>x>sprite.x and sprite.y+image_height>y>sprite.y:
        print("mouse hover sprite")
    else:
        print("mouse leave sprite")

pyglet.clock.schedule_interval(update, 1/60.)
pyglet.app.run()