diff options
author | Robert Adams | 2013-03-31 22:06:02 -0700 |
---|---|---|
committer | Robert Adams | 2013-03-31 22:19:43 -0700 |
commit | 933ac607468fb160636af601ce83ee1011794ec3 (patch) | |
tree | f3967455395612e24e322da6938072f7be4c901e /OpenSim/Region/Physics/BulletSPlugin/BSConstraint.cs | |
parent | BulletSim: start the renaming of local variables to m_ form to match the Open... (diff) | |
download | opensim-SC-933ac607468fb160636af601ce83ee1011794ec3.zip opensim-SC-933ac607468fb160636af601ce83ee1011794ec3.tar.gz opensim-SC-933ac607468fb160636af601ce83ee1011794ec3.tar.bz2 opensim-SC-933ac607468fb160636af601ce83ee1011794ec3.tar.xz |
BulletSim: not quite functional axis lock code.
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/Physics/BulletSPlugin/BSConstraint.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSConstraint.cs b/OpenSim/Region/Physics/BulletSPlugin/BSConstraint.cs index b813974..42b5c49 100755 --- a/OpenSim/Region/Physics/BulletSPlugin/BSConstraint.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSConstraint.cs | |||
@@ -85,7 +85,9 @@ public abstract class BSConstraint : IDisposable | |||
85 | { | 85 | { |
86 | bool ret = false; | 86 | bool ret = false; |
87 | if (m_enabled) | 87 | if (m_enabled) |
88 | { | ||
88 | ret = PhysicsScene.PE.SetAngularLimits(m_constraint, low, high); | 89 | ret = PhysicsScene.PE.SetAngularLimits(m_constraint, low, high); |
90 | } | ||
89 | return ret; | 91 | return ret; |
90 | } | 92 | } |
91 | 93 | ||