aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
index f22b0cc..7356123 100644
--- a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
@@ -1275,6 +1275,12 @@ namespace OpenSim.Region.Physics.OdePlugin
1275 _velocity = newmomentum; 1275 _velocity = newmomentum;
1276 _target_velocity = newmomentum; 1276 _target_velocity = newmomentum;
1277 m_pidControllerActive = true; 1277 m_pidControllerActive = true;
1278 m_colliderfilter = 0;
1279 m_colliderObjectfilter = 0;
1280 m_iscolliding = false;
1281 m_iscollidingGround = false;
1282 m_iscollidingObj = false;
1283
1278 if (Body != IntPtr.Zero) 1284 if (Body != IntPtr.Zero)
1279 d.BodySetLinearVel(Body, newmomentum.X, newmomentum.Y, newmomentum.Z); 1285 d.BodySetLinearVel(Body, newmomentum.X, newmomentum.Y, newmomentum.Z);
1280 } 1286 }