mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
recover bulletS fps math change lost in merge
This commit is contained in:
@@ -762,7 +762,8 @@ namespace OpenSim.Region.PhysicsModule.BulletS
|
||||
// The physics engine returns the number of milliseconds it simulated this call.
|
||||
// These are summed and normalized to one second and divided by 1000 to give the reported physics FPS.
|
||||
// Multiply by a fixed nominal frame rate to give a rate similar to the simulator (usually 55).
|
||||
m_simulatedTime += (float)numSubSteps * m_fixedTimeStep * 1000f * NominalFrameRate;
|
||||
// m_simulatedTime += (float)numSubSteps * m_fixedTimeStep * 1000f * NominalFrameRate;
|
||||
m_simulatedTime += (float)numSubSteps * m_fixedTimeStep;
|
||||
}
|
||||
|
||||
// Called by a BSPhysObject to note that it has changed properties and this information
|
||||
@@ -849,7 +850,7 @@ namespace OpenSim.Region.PhysicsModule.BulletS
|
||||
|
||||
// Return the framerate simulated to give the above returned results.
|
||||
// (Race condition here but this is just bookkeeping so rare mistakes do not merit a lock).
|
||||
float simTime = m_simulatedTime;
|
||||
float simTime = m_simulatedTime / timeStep;
|
||||
m_simulatedTime = 0f;
|
||||
return simTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user