我正在寻找一种在被触摸时移动 Actor 的方法。我试过下面的代码。但是,相关的 Actor 缺乏支持 touchdown 事件,所以我得到了NullPointerException。
actor.addListener(new InputListener() {
public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) {
event.getRelatedActor().addAction(moveBy(0,10,0.5f));
return true;
}
});
有什么建议么?