aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs
diff options
context:
space:
mode:
authorRobert Adams2013-02-03 21:48:11 -0800
committerRobert Adams2013-02-05 16:56:28 -0800
commit13233da66c96e9fb8b4f8c5c98aa34c8b6ccf1b7 (patch)
tree98540907b74c8594f83730be45319d6158fdaca9 /OpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs
parentBulletSim: rework some parameter setting implementation moving functionality ... (diff)
downloadopensim-SC_OLD-13233da66c96e9fb8b4f8c5c98aa34c8b6ccf1b7.zip
opensim-SC_OLD-13233da66c96e9fb8b4f8c5c98aa34c8b6ccf1b7.tar.gz
opensim-SC_OLD-13233da66c96e9fb8b4f8c5c98aa34c8b6ccf1b7.tar.bz2
opensim-SC_OLD-13233da66c96e9fb8b4f8c5c98aa34c8b6ccf1b7.tar.xz
BulletSim: add debugging looking for doorway sculpty problems
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs')
-rwxr-xr-xOpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs b/OpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs
index c7a2f7e..8012d91 100755
--- a/OpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BulletSimData.cs
@@ -217,6 +217,10 @@ public static class BulletSimData
217{ 217{
218 218
219// Map of collisionTypes to flags for collision groups and masks. 219// Map of collisionTypes to flags for collision groups and masks.
220// An object's 'group' is the collison groups this object belongs to
221// An object's 'filter' is the groups another object has to belong to in order to collide with me
222// A collision happens if ((obj1.group & obj2.filter) != 0) || ((obj2.group & obj1.filter) != 0)
223//
220// As mentioned above, don't use the CollisionFilterGroups definitions directly in the code 224// As mentioned above, don't use the CollisionFilterGroups definitions directly in the code
221// but, instead, use references to this dictionary. Finding and debugging 225// but, instead, use references to this dictionary. Finding and debugging
222// collision flag problems will be made easier. 226// collision flag problems will be made easier.