* Reduce the velocity tolerance on sending terse updates to avoid slowly drifting prims/avatars

* Added contacts_per_collision to the ODE config section. This allows you to reduce the maximum number of contact points ODE will generate per collision and reduce the size of the array that stores contact structures
This commit is contained in:
John Hurliman
2009-10-28 12:45:40 -07:00
parent ee0f7e10c8
commit a65c8cdc38
4 changed files with 15 additions and 5 deletions

View File

@@ -2394,7 +2394,7 @@ if (m_shape != null) {
/// </summary>
public void SendScheduledUpdates()
{
const float VELOCITY_TOLERANCE = 0.01f;
const float VELOCITY_TOLERANCE = 0.0001f;
const float POSITION_TOLERANCE = 0.1f;
const int TIME_MS_TOLERANCE = 3000;