diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 20d7a01..619296e 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -180,6 +180,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
180 | } | 180 | } |
181 | } | 181 | } |
182 | 182 | ||
183 | /// <summary> | ||
184 | /// If this scene object has an attachment point then indicate whether there is a point where | ||
185 | /// attachments are perceivable by avatars other than the avatar to which this object is attached. | ||
186 | /// </summary> | ||
187 | /// <remarks> | ||
188 | /// HUDs are not perceivable by other avatars. | ||
189 | /// </remarks> | ||
190 | public bool HasPrivateAttachmentPoint | ||
191 | { | ||
192 | get | ||
193 | { | ||
194 | return AttachmentPoint >= (uint)OpenMetaverse.AttachmentPoint.HUDCenter2 | ||
195 | && AttachmentPoint <= (uint)OpenMetaverse.AttachmentPoint.HUDBottomRight; | ||
196 | } | ||
197 | } | ||
198 | |||
183 | public void ClearPartAttachmentData() | 199 | public void ClearPartAttachmentData() |
184 | { | 200 | { |
185 | AttachmentPoint = 0; | 201 | AttachmentPoint = 0; |