aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/ChOdePlugin
diff options
context:
space:
mode:
authorMelanie2011-01-28 01:46:30 +0100
committerMelanie2011-01-28 01:46:30 +0100
commit566eff17de31b4ffc1aef85c6047ce9e4e8bf5cd (patch)
tree1a0e9a6fd77bd58df79c4b0cc4e9627312fd0702 /OpenSim/Region/Physics/ChOdePlugin
parentMerge branch 'master' into careminster-presence-refactor (diff)
downloadopensim-SC_OLD-566eff17de31b4ffc1aef85c6047ce9e4e8bf5cd.zip
opensim-SC_OLD-566eff17de31b4ffc1aef85c6047ce9e4e8bf5cd.tar.gz
opensim-SC_OLD-566eff17de31b4ffc1aef85c6047ce9e4e8bf5cd.tar.bz2
opensim-SC_OLD-566eff17de31b4ffc1aef85c6047ce9e4e8bf5cd.tar.xz
Comment a very spammy debug message that was being output directly to console.
My last fox that makes bumping into sim borders/bans work makes this spam endlessly.
Diffstat (limited to 'OpenSim/Region/Physics/ChOdePlugin')
-rw-r--r--OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs
index 93f9964..1bce760 100644
--- a/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs
@@ -594,7 +594,7 @@ namespace OpenSim.Region.Physics.OdePlugin
594 Shell = d.CreateCapsule(_parent_scene.space, CAPSULE_RADIUS, CAPSULE_LENGTH); 594 Shell = d.CreateCapsule(_parent_scene.space, CAPSULE_RADIUS, CAPSULE_LENGTH);
595 _parent_scene.geom_name_map[Shell] = m_name; 595 _parent_scene.geom_name_map[Shell] = m_name;
596 _parent_scene.actor_name_map[Shell] = (PhysicsActor)this; 596 _parent_scene.actor_name_map[Shell] = (PhysicsActor)this;
597Console.WriteLine("**** Create {2} Dicts: actor={0} name={1} height={3} rad={4}", _parent_scene.actor_name_map.Count, _parent_scene.geom_name_map.Count, m_name, CAPSULE_LENGTH, CAPSULE_RADIUS); 597//Console.WriteLine("**** Create {2} Dicts: actor={0} name={1} height={3} rad={4}", _parent_scene.actor_name_map.Count, _parent_scene.geom_name_map.Count, m_name, CAPSULE_LENGTH, CAPSULE_RADIUS);
598 598
599 d.GeomSetCategoryBits(Shell, (int)m_collisionCategories); 599 d.GeomSetCategoryBits(Shell, (int)m_collisionCategories);
600 d.GeomSetCollideBits(Shell, (int)m_collisionFlags); 600 d.GeomSetCollideBits(Shell, (int)m_collisionFlags);