我使用libgdx并学会了如何进行屏幕触摸操作。
if(Gdx.input.justTouched())
当只触摸屏幕的左侧时,不知道如何采取行动。
答案 0 :(得分:1)
您可以getX();
和Gdx.graphics.getWidth();
if (Gdx.input.isTouched()) {
if (Gdx.input.getX() < Gdx.graphics.getWidth() / 2){
// your code here
}
}