aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs
diff options
context:
space:
mode:
authorKitto Flora2010-12-11 21:04:03 +0000
committerKitto Flora2010-12-11 21:04:03 +0000
commit95a915efd88d859c3fc29576e599c6912522e6dc (patch)
tree51712bceec499260c47da4b5ed1c451bcc6da5c8 /OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs
parentAllow floats in the list for llSetPayPrice and silently convert them to int, (diff)
downloadopensim-SC_OLD-95a915efd88d859c3fc29576e599c6912522e6dc.zip
opensim-SC_OLD-95a915efd88d859c3fc29576e599c6912522e6dc.tar.gz
opensim-SC_OLD-95a915efd88d859c3fc29576e599c6912522e6dc.tar.bz2
opensim-SC_OLD-95a915efd88d859c3fc29576e599c6912522e6dc.tar.xz
Fix border fence for physicals. Fix llRotLookAt() for Vehicles.
Diffstat (limited to 'OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs')
-rw-r--r--OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs
index 86f9893..e1989e2 100644
--- a/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs
+++ b/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs
@@ -224,7 +224,7 @@ namespace OpenSim.Region.Physics.OdePlugin
224 public float bodyPIDG = 25; 224 public float bodyPIDG = 25;
225 225
226 public int geomCrossingFailuresBeforeOutofbounds = 5; 226 public int geomCrossingFailuresBeforeOutofbounds = 5;
227 public int geomRegionFence = 0; 227 public float geomRegionFence = 0.0f;
228 228
229 public float bodyMotorJointMaxforceTensor = 2; 229 public float bodyMotorJointMaxforceTensor = 2;
230 230
@@ -448,7 +448,7 @@ namespace OpenSim.Region.Physics.OdePlugin
448 geomContactPointsStartthrottle = physicsconfig.GetInt("geom_contactpoints_start_throttling", 3); 448 geomContactPointsStartthrottle = physicsconfig.GetInt("geom_contactpoints_start_throttling", 3);
449 geomUpdatesPerThrottledUpdate = physicsconfig.GetInt("geom_updates_before_throttled_update", 15); 449 geomUpdatesPerThrottledUpdate = physicsconfig.GetInt("geom_updates_before_throttled_update", 15);
450 geomCrossingFailuresBeforeOutofbounds = physicsconfig.GetInt("geom_crossing_failures_before_outofbounds", 5); 450 geomCrossingFailuresBeforeOutofbounds = physicsconfig.GetInt("geom_crossing_failures_before_outofbounds", 5);
451 geomRegionFence = physicsconfig.GetInt("region_border_fence", 0); 451 geomRegionFence = physicsconfig.GetFloat("region_border_fence", 0.0f);
452 452
453 geomDefaultDensity = physicsconfig.GetFloat("geometry_default_density", 10.000006836f); 453 geomDefaultDensity = physicsconfig.GetFloat("geometry_default_density", 10.000006836f);
454 bodyFramesAutoDisable = physicsconfig.GetInt("body_frames_auto_disable", 20); 454 bodyFramesAutoDisable = physicsconfig.GetInt("body_frames_auto_disable", 20);