diff options
author | Robert Adams | 2013-01-28 17:21:13 -0800 |
---|---|---|
committer | Robert Adams | 2013-01-28 17:21:13 -0800 |
commit | 47f09ed4c1d6a5d9763b6d1f5f86169e452281c8 (patch) | |
tree | 9ac97612e6254da40db275dce57b4f04e19b4275 /OpenSim/Region/Physics/BulletSPlugin/BSDynamics.cs | |
parent | BulletSim: first unit test: vehicle angular attraction (diff) | |
download | opensim-SC_OLD-47f09ed4c1d6a5d9763b6d1f5f86169e452281c8.zip opensim-SC_OLD-47f09ed4c1d6a5d9763b6d1f5f86169e452281c8.tar.gz opensim-SC_OLD-47f09ed4c1d6a5d9763b6d1f5f86169e452281c8.tar.bz2 opensim-SC_OLD-47f09ed4c1d6a5d9763b6d1f5f86169e452281c8.tar.xz |
BulletSim: enable angular vertical attraction.
Increase terrain collision margin to help vehicles from tunneling
into same.
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSDynamics.cs')
-rw-r--r-- | OpenSim/Region/Physics/BulletSPlugin/BSDynamics.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSDynamics.cs b/OpenSim/Region/Physics/BulletSPlugin/BSDynamics.cs index 05a0dcc..05ab180 100644 --- a/OpenSim/Region/Physics/BulletSPlugin/BSDynamics.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSDynamics.cs | |||
@@ -141,12 +141,12 @@ namespace OpenSim.Region.Physics.BulletSPlugin | |||
141 | // in changes by making enablement of debugging flags from INI file. | 141 | // in changes by making enablement of debugging flags from INI file. |
142 | public void SetupVehicleDebugging() | 142 | public void SetupVehicleDebugging() |
143 | { | 143 | { |
144 | enableAngularVerticalAttraction = false; | 144 | enableAngularVerticalAttraction = true; |
145 | enableAngularDeflection = false; | 145 | enableAngularDeflection = false; |
146 | enableAngularBanking = false; | 146 | enableAngularBanking = false; |
147 | if (BSParam.VehicleDebuggingEnabled != ConfigurationParameters.numericFalse) | 147 | if (BSParam.VehicleDebuggingEnabled != ConfigurationParameters.numericFalse) |
148 | { | 148 | { |
149 | enableAngularVerticalAttraction = false; | 149 | enableAngularVerticalAttraction = true; |
150 | enableAngularDeflection = false; | 150 | enableAngularDeflection = false; |
151 | enableAngularBanking = false; | 151 | enableAngularBanking = false; |
152 | } | 152 | } |