如何在pyglet中制作Hitbox?

时间:2014-02-20 19:29:29

标签: python pyglet

我正在为pyglet中的项目制作按钮,但不知道如何制作它们,我想在这些坐标之间进行。

on_mouse_press(x=365, y=187, dx=0, dy=0)
on_mouse_press(x=341, y=179, button='LEFT', modifiers=)

on_mouse_press(x=116, y=224, button='LEFT', modifiers=)
on_mouse_press(x=291, y=22, button='LEFT', modifiers=)

on_mouse_press(x=398, y=335, button='LEFT', modifiers=)
on_mouse_press(x=394, y=198, button='LEFT', modifiers=)

关于如何做到这一点的任何想法?

1 个答案:

答案 0 :(得分:0)

在我看来,这与this stack overflow question非常相似。 Constantinus提出的代码完全符合我的目的。