diff options
author | John Hurliman | 2009-10-27 13:16:58 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-27 13:16:58 -0700 |
commit | fefe767476f3233a7cf2d2dd68d967f23231c73e (patch) | |
tree | 7a6d7f0eeeeee20af93822434be2632c8596fc52 | |
parent | Making the defaults for interest management variables match whether you have ... (diff) | |
download | opensim-SC_OLD-fefe767476f3233a7cf2d2dd68d967f23231c73e.zip opensim-SC_OLD-fefe767476f3233a7cf2d2dd68d967f23231c73e.tar.gz opensim-SC_OLD-fefe767476f3233a7cf2d2dd68d967f23231c73e.tar.bz2 opensim-SC_OLD-fefe767476f3233a7cf2d2dd68d967f23231c73e.tar.xz |
Lowering the position tolerance of terse updates for ScenePresences to mitigate some of the rubberbanding issues while we are sending incorrect time dilation values
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 70f3112..9b11582 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -2394,7 +2394,7 @@ if (m_shape != null) { | |||
2394 | public void SendScheduledUpdates() | 2394 | public void SendScheduledUpdates() |
2395 | { | 2395 | { |
2396 | const float VELOCITY_TOLERANCE = 0.01f; | 2396 | const float VELOCITY_TOLERANCE = 0.01f; |
2397 | const float POSITION_TOLERANCE = 10.0f; | 2397 | const float POSITION_TOLERANCE = 0.1f; |
2398 | 2398 | ||
2399 | if (m_updateFlag == 1) | 2399 | if (m_updateFlag == 1) |
2400 | { | 2400 | { |