libgdx ModelInstance翻译和旋转不起作用

时间:2016-06-13 13:58:44

标签: libgdx

我的问题是我有一个模型(g3db)和

touchPosition.x = Gdx.input.getX();
        touchPosition.y = Gdx.input.getY();
        rotation.y = (float) Math.atan2(touchPosition.x - Gdx.graphics.getWidth() / 2, touchPosition.y - Gdx.graphics.getHeight() / 2) * MathUtils.radiansToDegrees + 90;
        shipInstance.transform.translate(-10, 0, 0);
        shipInstance.transform.setToRotation(new Vector3(0,1,0),rotation.y);

船舶只是在旋转而不是在空间中移动。 我错了什么?

0 个答案:

没有答案