Mouse hover - libgdx

前端 未结 1 1597
無奈伤痛
無奈伤痛 2020-12-19 10:16

Is there any listener in libgdx that would allow me to detect just mouse hover not pressed just hover. In the button class of scene 2D you have 2 methods isOver and isPresse

相关标签:
1条回答
  • 2020-12-19 10:50

    There's the ClickListener which can be attached to an Actor and it offers events like the following ones:

    public void enter(InputEvent event, float x, float y, int pointer, Actor fromActor)
    public void exit(InputEvent event, float x, float y, int pointer, Actor toActor)
    

    The enter event basiscally means that the mouse started hovering over the actor, exit means it "left" the area of the actor. It also has a clicked event which you can use to execute some action in the end.

    0 讨论(0)
提交回复
热议问题