在Scene2d中滑动一个Actor

时间:2016-11-28 07:20:42

标签: animation input libgdx actor scene2d

我想检测输入是否在我的程序中滑过一个actor。我在网上找到了其他类似的问题,但答案并没有多大帮助。我想要发生的是,只要滑动进入我的演员的边界,就会弹出一个图像。我还想提一下,如果需要这个actor是动画的,它的代码来自另一个扩展为Actor的类。提前谢谢。

1 个答案:

答案 0 :(得分:0)

您刚才提到了问题的答案。使用InputListener enter可以检测输入何时进入actor的边界。这是代码:

Actor.addListener(new InputListener(){
            public void enter(InputEvent event, float x, float y, int pointer, Actor fromActor){
     //Enter what you want to happen when a swipe enters your actor boundary.
}