summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2016-04-27 14:39:30 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2016-04-27 14:39:30 -0400
commitd1a14cda3470e1f1b95442e39e0f0294c2e67cff (patch)
tree77b21ee89f710af25c95323d150ed0ebe442d629 /indra
parent041433483ad64c399ffcdf95906eb8e83109ba75 (diff)
SL-375 - pos = default pos threshold is now 0.1 mm
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llvoavatar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index 9bfb402b03..08c0d9a116 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -5317,9 +5317,9 @@ void LLVOAvatar::clearAttachmentPosOverrides()
bool above_joint_pos_threshold(const LLVector3& diff)
{
- return !diff.isNull();
- //const F32 max_joint_pos_offset = 0.0001f; // 0.1 mm
- //return diff.lengthSquared() > max_joint_pos_offset * max_joint_pos_offset;
+ //return !diff.isNull();
+ const F32 max_joint_pos_offset = 0.0001f; // 0.1 mm
+ return diff.lengthSquared() > max_joint_pos_offset * max_joint_pos_offset;
}
//-----------------------------------------------------------------------------