diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-05-08 15:27:08 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-05-08 15:27:08 -0400 |
commit | efe5cbc205a9bd5047d1766abaa490a5977a8455 (patch) | |
tree | 897bad1462cd4222e489e55762c65ebfb8296ed5 /indra | |
parent | 940adfe4d02ab0ecf69635afe7f959abe1fe2c44 (diff) |
Restored original animation thresholds
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/llcharacter/llbvhloader.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/llcharacter/llbvhloader.cpp b/indra/llcharacter/llbvhloader.cpp index 754b9362cd..0cd6c2abc1 100755 --- a/indra/llcharacter/llbvhloader.cpp +++ b/indra/llcharacter/llbvhloader.cpp @@ -42,12 +42,10 @@ using namespace std; #define INCHES_TO_METERS 0.02540005f -//const F32 POSITION_KEYFRAME_THRESHOLD_SQUARED = 0.03f * 0.03f; -const F32 POSITION_KEYFRAME_THRESHOLD_SQUARED = 0.0f; +const F32 POSITION_KEYFRAME_THRESHOLD_SQUARED = 0.03f * 0.03f; const F32 ROTATION_KEYFRAME_THRESHOLD = 0.01f; -//const F32 POSITION_MOTION_THRESHOLD_SQUARED = 0.001f * 0.001f; -const F32 POSITION_MOTION_THRESHOLD_SQUARED = 0.0f; +const F32 POSITION_MOTION_THRESHOLD_SQUARED = 0.001f * 0.001f; const F32 ROTATION_MOTION_THRESHOLD = 0.001f; char gInFile[1024]; /* Flawfinder: ignore */ |