revert terminal vel reduction. It helped but not efective

This commit is contained in:
UbitUmarov
2012-05-11 15:53:31 +01:00
parent 3c37bc2851
commit 8dd5f08b6e

View File

@@ -1006,9 +1006,9 @@ namespace OpenSim.Region.Physics.OdePlugin
}
}
if (velLengthSquared > 625.0f) // 25m/s apply breaks
if (velLengthSquared > 2500.0f) // 50m/s apply breaks
{
breakfactor = 0.31f * m_mass;
breakfactor = 0.16f * m_mass;
vec.X -= breakfactor * vel.X;
vec.Y -= breakfactor * vel.Y;
vec.Z -= breakfactor * vel.Z;