diff options
author | Loren Shih <seraph@lindenlab.com> | 2011-03-31 15:56:33 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2011-03-31 15:56:33 -0400 |
commit | ba0c369aa20cdbfd7940a2435dd3c6630f0d54ae (patch) | |
tree | b5a6750fd3d483173e3dc5d7f1c96f1f800b92c0 /indra/newview/llphysicsmotion.cpp | |
parent | 107ca5d7c8f7a511e6606a91930b893edbfe884e (diff) |
Tweaking of avatar physics detail slider.
Diffstat (limited to 'indra/newview/llphysicsmotion.cpp')
-rw-r--r-- | indra/newview/llphysicsmotion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llphysicsmotion.cpp b/indra/newview/llphysicsmotion.cpp index 157d13e1a4..73de1cef3f 100644 --- a/indra/newview/llphysicsmotion.cpp +++ b/indra/newview/llphysicsmotion.cpp @@ -631,7 +631,7 @@ BOOL LLPhysicsMotion::onUpdate(F32 time) if ((pixel_area > area_for_this_setting) || is_self)
{
const F32 position_diff_local = llabs(mPositionLastUpdate_local-position_new_local_clamped);
- const F32 min_delta = (1.01f-lod_factor)*0.5f; // 75% is just an experimental magic number.
+ const F32 min_delta = (1.01f-lod_factor)*0.4f;
if (llabs(position_diff_local) > min_delta)
{
update_visuals = TRUE;
|