"" , . , , - touchDown, touchUp, "" render, .
boolean touchActive = false;
public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) {
touchActive = true;
return true;
}
public void touchUp (InputEvent event, float x, float y, int pointer, int button) {
touchActive = false;
}
public void render(float delta) {
...
if (touchActive) {
}
...
}