aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 0533106..1fe8048 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -3282,6 +3282,10 @@ namespace OpenSim.Region.Framework.Scenes
3282 /// <summary> 3282 /// <summary>
3283 /// Event called by the physics plugin to tell the avatar about a collision. 3283 /// Event called by the physics plugin to tell the avatar about a collision.
3284 /// </summary> 3284 /// </summary>
3285 /// <remarks>
3286 /// This function is called continuously, even when there are no collisions which might be very inefficient.
3287 /// However, we can't avoid this yet since some of this method might currently rely on being called every frame.
3288 /// </remarks>
3285 /// <param name="e"></param> 3289 /// <param name="e"></param>
3286 public void PhysicsCollisionUpdate(EventArgs e) 3290 public void PhysicsCollisionUpdate(EventArgs e)
3287 { 3291 {