diff options
author | John Hurliman | 2009-10-28 14:44:05 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-28 14:44:05 -0700 |
commit | a069a1ee683f67405ae66205662bb8129087030b (patch) | |
tree | f054ee5f61a13cb3c85cef368d453bafbfeaaf64 /OpenSim/Region/Physics/OdePlugin | |
parent | * Standalone logins will now go through the sequence of "requested region, de... (diff) | |
download | opensim-SC_OLD-a069a1ee683f67405ae66205662bb8129087030b.zip opensim-SC_OLD-a069a1ee683f67405ae66205662bb8129087030b.tar.gz opensim-SC_OLD-a069a1ee683f67405ae66205662bb8129087030b.tar.bz2 opensim-SC_OLD-a069a1ee683f67405ae66205662bb8129087030b.tar.xz |
Limit physics time dilation to 1.0
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 6ca415b..3fdf9ea 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -2672,7 +2672,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
2672 | //(step_time == 0.004f, there's 250 of those per second. Times the step time/step size | 2672 | //(step_time == 0.004f, there's 250 of those per second. Times the step time/step size |
2673 | 2673 | ||
2674 | fps = (step_time / ODE_STEPSIZE) * 1000; | 2674 | fps = (step_time / ODE_STEPSIZE) * 1000; |
2675 | m_timeDilation = (step_time / ODE_STEPSIZE) / (0.09375f / ODE_STEPSIZE); | 2675 | m_timeDilation = Math.Min((step_time / ODE_STEPSIZE) / (0.09375f / ODE_STEPSIZE), 1.0f); |
2676 | 2676 | ||
2677 | step_time = 0.09375f; | 2677 | step_time = 0.09375f; |
2678 | 2678 | ||