0
私のコードは、オブジェクトをクリックすることでオブジェクトを移動し、タッチすると移動するオブジェクトに触れたいだけです。Libgdx:touchDragged、オブジェクトは移動しません。
Vector3 touchPos;
touchPos = new Vector3();
Gdx.input.setInputProcessor(this);
@Override
public boolean touchDragged(int screenX, int screenY, int pointer) {
touchPos.set(Gdx.input.getX(), Gdx.input.getY(), 0);
camera.unproject(touchPos);
bucket.x = touchPos.x - 64/2;
return true;
}