diff options
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> |