Libgdx速度与角度

时间:2016-10-15 07:59:50

标签: java libgdx box2d velocity angle

我有一把随玩家移动的枪,当玩家移动时,它的位置和角度会不断变化。我有枪的旋转角度,我把它放在setAngularVelocity但没有任何反应。我是否必须在更新方法中执行某些操作?

public Shot(float x, float y, float a) {
    setBody(); // Made a KinematicBody body here
    setSprite();
    body.setLinearVelocity(12f, 0);
    body.setAngularVelocity(a); // a = gun.getAngle();
}

0 个答案:

没有答案