From 7a1f8451890626d5b673c91c34d5b836be6e23b3 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Wed, 16 Oct 2013 15:48:25 -0700 Subject: [PATCH] Another rate adjustment. --- interface/src/avatar/MyAvatar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/avatar/MyAvatar.cpp b/interface/src/avatar/MyAvatar.cpp index 10beec4a12..7fc625072e 100644 --- a/interface/src/avatar/MyAvatar.cpp +++ b/interface/src/avatar/MyAvatar.cpp @@ -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)); }