Наведите курсор мыши на объект Sprite Пиглет? - PullRequest
0 голосов
/ 03 января 2019

Я хочу знать, есть ли способ отлавливания наведения мыши на спрайтовом объекте с помощью Pyglet?

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

как-то так в Tkinter:

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

1 Ответ

0 голосов
/ 03 января 2019

Ниже приведен демонстрационный код для обнаружения наведения мыши на движущемся 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()
...