diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/InnerScene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/InnerScene.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index c436b89..1625e80 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs | |||
@@ -354,6 +354,23 @@ namespace OpenSim.Region.Environment.Scenes | |||
354 | } | 354 | } |
355 | 355 | ||
356 | /// <summary> | 356 | /// <summary> |
357 | /// This handles the nifty little tool tip that you get when you drag your mouse over an object | ||
358 | /// Send to the Object Group to process. We don't know enough to service the request | ||
359 | /// </summary> | ||
360 | /// <param name="remoteClient"></param> | ||
361 | /// <param name="AgentID"></param> | ||
362 | /// <param name="RequestFlags"></param> | ||
363 | /// <param name="ObjectID"></param> | ||
364 | public void RequestObjectPropertiesFamily(IClientAPI remoteClient, LLUUID AgentID, uint RequestFlags, LLUUID ObjectID) | ||
365 | { | ||
366 | SceneObjectGroup group = GetGroupByPrim(ObjectID); | ||
367 | if (group != null) | ||
368 | group.ServiceObjectPropertiesFamilyRequest(remoteClient, AgentID, RequestFlags); | ||
369 | |||
370 | |||
371 | } | ||
372 | |||
373 | /// <summary> | ||
357 | /// | 374 | /// |
358 | /// </summary> | 375 | /// </summary> |
359 | /// <param name="localID"></param> | 376 | /// <param name="localID"></param> |