changed the value for the top threshold that triggers a vertical reset, this stops unwanted recentering

This commit is contained in:
amantley 2019-01-11 08:46:20 -08:00
parent 83cb60f46f
commit 8cba72743e

View file

@ -4252,7 +4252,7 @@ bool MyAvatar::FollowHelper::shouldActivateHorizontalCG(MyAvatar& myAvatar) cons
}
bool MyAvatar::FollowHelper::shouldActivateVertical(const MyAvatar& myAvatar, const glm::mat4& desiredBodyMatrix, const glm::mat4& currentBodyMatrix) const {
const float CYLINDER_TOP = 0.1f;
const float CYLINDER_TOP = 0.5f;
const float CYLINDER_BOTTOM = -1.5f;
const float SITTING_BOTTOM = -0.02f;