diff options
author | Teravus Ovares | 2007-11-15 07:32:24 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-15 07:32:24 +0000 |
commit | 179695909a8967bcdb092720a19c264d52fb4515 (patch) | |
tree | b940ef5a1587b976ec2e8c7c0e2ae899198d41ef /OpenSim/Region/Environment/Scenes/InnerScene.cs | |
parent | added first attempt at storing stopped physical objects (diff) | |
download | opensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.zip opensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.tar.gz opensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.tar.bz2 opensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.tar.xz |
* Implemented the little friendly pop tooltip messages that appear when you hover your mouse over prim with the object name, description, ownerid.. etc.
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> |