diff options
author | Justin Clark-Casey (justincc) | 2011-05-20 23:34:34 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-05-20 23:34:34 +0100 |
commit | 91a9f30b1613fba8c3ff31de5b9390b0e636ad65 (patch) | |
tree | b48c64a1dbfd7771adf92b44eaa4eb657e1966ac /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | add test for rezzing an object from a prim item (diff) | |
download | opensim-SC_OLD-91a9f30b1613fba8c3ff31de5b9390b0e636ad65.zip opensim-SC_OLD-91a9f30b1613fba8c3ff31de5b9390b0e636ad65.tar.gz opensim-SC_OLD-91a9f30b1613fba8c3ff31de5b9390b0e636ad65.tar.bz2 opensim-SC_OLD-91a9f30b1613fba8c3ff31de5b9390b0e636ad65.tar.xz |
implement Scene.GetSceneObjectGroup(UUID fullID) using existing index
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 0722cee..f718331 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4279,6 +4279,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
4279 | // } | 4279 | // } |
4280 | 4280 | ||
4281 | /// <summary> | 4281 | /// <summary> |
4282 | /// Get a group via its UUID | ||
4283 | /// </summary> | ||
4284 | /// <param name="fullID"></param> | ||
4285 | /// <returns></returns> | ||
4286 | public SceneObjectGroup GetSceneObjectGroup(UUID fullID) | ||
4287 | { | ||
4288 | return m_sceneGraph.GetSceneObjectGroup(fullID); | ||
4289 | } | ||
4290 | |||
4291 | /// <summary> | ||
4282 | /// Get a named prim contained in this scene (will return the first | 4292 | /// Get a named prim contained in this scene (will return the first |
4283 | /// found, if there are more than one prim with the same name) | 4293 | /// found, if there are more than one prim with the same name) |
4284 | /// </summary> | 4294 | /// </summary> |