Another rate adjustment.

This commit is contained in:
Andrzej Kapolka 2013-10-16 15:48:25 -07:00
parent 6df245908c
commit 7a1f845189

View file

@ -1188,7 +1188,7 @@ void MyAvatar::updateChatCircle(float deltaTime) {
targetOrientation = rotationBetween(targetOrientation * IDENTITY_UP, up) * targetOrientation;
// approach the target position/orientation
const float APPROACH_RATE = 0.01f;
const float APPROACH_RATE = 0.025f;
_position = glm::mix(_position, targetPosition, APPROACH_RATE);
setOrientation(safeMix(orientation, targetOrientation, APPROACH_RATE));
}