diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 6239d51..d98c01d 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4474,6 +4474,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
4474 | } | 4474 | } |
4475 | 4475 | ||
4476 | /// <summary> | 4476 | /// <summary> |
4477 | /// Get all the scene object groups. | ||
4478 | /// </summary> | ||
4479 | /// <returns> | ||
4480 | /// The scene object groups. If the scene is empty then an empty list is returned. | ||
4481 | /// </returns> | ||
4482 | public List<SceneObjectGroup> GetSceneObjectGroups() | ||
4483 | { | ||
4484 | return m_sceneGraph.GetSceneObjectGroups(); | ||
4485 | } | ||
4486 | |||
4487 | /// <summary> | ||
4477 | /// Get a group via its UUID | 4488 | /// Get a group via its UUID |
4478 | /// </summary> | 4489 | /// </summary> |
4479 | /// <param name="fullID"></param> | 4490 | /// <param name="fullID"></param> |