aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-11-09 21:01:55 +0000
committerTeravus Ovares2007-11-09 21:01:55 +0000
commite9e72fe9079ab011dc43199496fb9a9dc7ea5b3a (patch)
tree5c202b24b748e147b7aa4692044d618bfec522d0 /OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs
parentadd a few more verbose bits (diff)
downloadopensim-SC_OLD-e9e72fe9079ab011dc43199496fb9a9dc7ea5b3a.zip
opensim-SC_OLD-e9e72fe9079ab011dc43199496fb9a9dc7ea5b3a.tar.gz
opensim-SC_OLD-e9e72fe9079ab011dc43199496fb9a9dc7ea5b3a.tar.bz2
opensim-SC_OLD-e9e72fe9079ab011dc43199496fb9a9dc7ea5b3a.tar.xz
* Added an internal throttle on ODE physics updates
* Added a ThrottleUpdates member to PhysicsActor to expose 'throttle' ability to the Scene. * Updated the ode.dll file with a fix to invalid data passed to ODE's heightfield collision calculator.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs b/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs
index d282e9d..76121ae 100644
--- a/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs
+++ b/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs
@@ -204,7 +204,11 @@ namespace OpenSim.Region.Physics.PhysXPlugin
204 get { return false; } 204 get { return false; }
205 set { return; } 205 set { return; }
206 } 206 }
207 207 public override bool ThrottleUpdates
208 {
209 get { return false; }
210 set { return; }
211 }
208 public override bool Flying 212 public override bool Flying
209 { 213 {
210 get { return flying; } 214 get { return flying; }
@@ -335,6 +339,11 @@ namespace OpenSim.Region.Physics.PhysXPlugin
335 get { return false; } 339 get { return false; }
336 set { return; } 340 set { return; }
337 } 341 }
342 public override bool ThrottleUpdates
343 {
344 get { return false; }
345 set { return; }
346 }
338 public override PhysicsVector RotationalVelocity 347 public override PhysicsVector RotationalVelocity
339 { 348 {
340 get { return m_rotationalVelocity; } 349 get { return m_rotationalVelocity; }