save a few ns on ubode

This commit is contained in:
UbitUmarov
2021-09-08 17:52:11 +01:00
parent 1e4799604f
commit 076c87914d
3 changed files with 86 additions and 60 deletions

View File

@@ -3450,9 +3450,9 @@ namespace OpenSim.Region.Framework.Scenes
}
}
private const float ROTATION_TOLERANCE = 0.01f;
private const float ROTATION_TOLERANCE = 0.002f;
private const float VELOCITY_TOLERANCE = 0.1f;
private const float ANGVELOCITY_TOLERANCE = 0.005f;
private const float ANGVELOCITY_TOLERANCE = 0.002f;
private const float POSITION_TOLERANCE = 0.05f; // I don't like this, but I suppose it's necessary
private const double TIME_MS_TOLERANCE = 250.0; //llSetPos has a 200ms delay. This should NOT be 3 seconds.