diff --git a/interface/src/avatar/MyAvatar.cpp b/interface/src/avatar/MyAvatar.cpp index bdb0877cda..6dc3d820ae 100644 --- a/interface/src/avatar/MyAvatar.cpp +++ b/interface/src/avatar/MyAvatar.cpp @@ -1357,6 +1357,9 @@ void MyAvatar::updatePositionWithPhysics(float deltaTime) { // rotate back into world-frame _velocity = rotation * newLocalVelocity; + + _velocity += _thrust * deltaTime; + _thrust = glm::vec3(0.0f); } void MyAvatar::updateCollisionSound(const glm::vec3 &penetration, float deltaTime, float frequency) {