2
액터를 터치했을 때 액터를 이동하는 방법을 찾고 있습니다. 나는 아래 코드를 시도했다. 그러나 관련 Actor는 touchdown 이벤트를 지원하지 않으므로 NullPointerException이 표시됩니다.Scene2d에서 TouchDown 이벤트를 사용하여 액터 이동하기
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;
}
});
의견이 있으십니까?