aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
authorMW2007-08-13 20:24:37 +0000
committerMW2007-08-13 20:24:37 +0000
commit45fcbaae1befb988608654505b1e7c275a189770 (patch)
treedba22b72d604d68957bb81c13450b57e0340acd1 /OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
parentadded Sample OnObjectGrab event to SceneEventManager for script engines to s... (diff)
downloadopensim-SC_OLD-45fcbaae1befb988608654505b1e7c275a189770.zip
opensim-SC_OLD-45fcbaae1befb988608654505b1e7c275a189770.tar.gz
opensim-SC_OLD-45fcbaae1befb988608654505b1e7c275a189770.tar.bz2
opensim-SC_OLD-45fcbaae1befb988608654505b1e7c275a189770.tar.xz
Added Scene.ConvertLocalIDToFullID() method.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
index ad7b906..4f98199 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
@@ -825,5 +825,15 @@ namespace OpenSim.Region.Environment.Scenes
825 } 825 }
826 } 826 }
827 } 827 }
828
829 public LLUUID GetPartsFullID(uint localID)
830 {
831 SceneObjectPart part = this.GetChildPrim(localID);
832 if (part != null)
833 {
834 return part.UUID;
835 }
836 return null;
837 }
828 } 838 }
829} 839}