diff options
author | UbitUmarov | 2012-04-17 01:00:50 +0100 |
---|---|---|
committer | UbitUmarov | 2012-04-17 01:00:50 +0100 |
commit | 36207b88ffc7801fb15e544e727cb3efaa25d6ea (patch) | |
tree | be17477a9650822a8f743afb9047825366549f10 /OpenSim/Region/Physics | |
parent | fix (http://opensimulator.org/mantis/view.php?id=5965) llGetObjectMass was ba... (diff) | |
download | opensim-SC_OLD-36207b88ffc7801fb15e544e727cb3efaa25d6ea.zip opensim-SC_OLD-36207b88ffc7801fb15e544e727cb3efaa25d6ea.tar.gz opensim-SC_OLD-36207b88ffc7801fb15e544e727cb3efaa25d6ea.tar.bz2 opensim-SC_OLD-36207b88ffc7801fb15e544e727cb3efaa25d6ea.tar.xz |
ubitODE: bug fix let avatars colide with volume detectors
Diffstat (limited to 'OpenSim/Region/Physics')
-rw-r--r-- | OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs index 3185aad..9c1b87b 100644 --- a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs | |||
@@ -117,6 +117,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
117 | // Default, Collide with Other Geometries, spaces, bodies and characters. | 117 | // Default, Collide with Other Geometries, spaces, bodies and characters. |
118 | private CollisionCategories m_collisionFlags = (CollisionCategories.Character | 118 | private CollisionCategories m_collisionFlags = (CollisionCategories.Character |
119 | | CollisionCategories.Geom | 119 | | CollisionCategories.Geom |
120 | | CollisionCategories.VolumeDtc | ||
120 | ); | 121 | ); |
121 | // we do land collisions not ode | CollisionCategories.Land); | 122 | // we do land collisions not ode | CollisionCategories.Land); |
122 | public IntPtr Body = IntPtr.Zero; | 123 | public IntPtr Body = IntPtr.Zero; |