aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/OdeScene.cs')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdeScene.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdeScene.cs b/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
index 9dee07b..d5c3250 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
@@ -243,7 +243,9 @@ namespace OpenSim.Region.Physics.OdePlugin
243 /// Maps a unique geometry id (a memory location) to a physics actor name. 243 /// Maps a unique geometry id (a memory location) to a physics actor name.
244 /// </summary> 244 /// </summary>
245 /// <remarks> 245 /// <remarks>
246 /// Only actors participating in collisions have geometries. 246 /// Only actors participating in collisions have geometries. This has to be maintained separately from
247 /// actor_name_map because terrain and water currently don't conceptually have a physics actor of their own
248 /// apart from the singleton PANull
247 /// </remarks> 249 /// </remarks>
248 public Dictionary<IntPtr, String> geom_name_map = new Dictionary<IntPtr, String>(); 250 public Dictionary<IntPtr, String> geom_name_map = new Dictionary<IntPtr, String>();
249 251