aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IScenePresence.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-08-31 17:53:58 +0100
committerJustin Clark-Casey (justincc)2011-08-31 17:53:58 +0100
commit7d58b5fa157b4c3e842573d9fb02a9822034f4b0 (patch)
treeb726d3c045a2ccbad3530b27c00e8a03027f5548 /OpenSim/Region/Framework/Interfaces/IScenePresence.cs
parentIf a FireAndForget thread terminates with an exception, then catch and log ra... (diff)
downloadopensim-SC_OLD-7d58b5fa157b4c3e842573d9fb02a9822034f4b0.zip
opensim-SC_OLD-7d58b5fa157b4c3e842573d9fb02a9822034f4b0.tar.gz
opensim-SC_OLD-7d58b5fa157b4c3e842573d9fb02a9822034f4b0.tar.bz2
opensim-SC_OLD-7d58b5fa157b4c3e842573d9fb02a9822034f4b0.tar.xz
move common code into AttachmentsModule.DeleteAttachmentsFromScene()
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IScenePresence.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScenePresence.cs17
1 files changed, 15 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs
index 788b36f..91e4bf2 100644
--- a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs
@@ -62,9 +62,22 @@ namespace OpenSim.Region.Framework.Interfaces
62 /// A copy of the list. 62 /// A copy of the list.
63 /// </returns> 63 /// </returns>
64 /// <remarks> 64 /// <remarks>
65 /// Do not change this list directly - use methods such as 65 /// Do not change this list directly - use the attachments module.
66 /// AddAttachment() and RemoveAttachment().
67 /// </remarks> 66 /// </remarks>
68 List<SceneObjectGroup> GetAttachments(); 67 List<SceneObjectGroup> GetAttachments();
68
69 /// <summary>
70 /// The scene objects attached to this avatar at a specific attachment point.
71 /// </summary>
72 /// <param name="attachmentPoint"></param>
73 /// <returns></returns>
74 List<SceneObjectGroup> GetAttachments(uint attachmentPoint);
75
76 bool HasAttachments();
77
78 // Don't use these methods directly. Instead, use the AttachmentsModule
79 void AddAttachment(SceneObjectGroup gobj);
80 void RemoveAttachment(SceneObjectGroup gobj);
81 void ClearAttachments();
69 } 82 }
70} \ No newline at end of file 83} \ No newline at end of file