aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-07-06 23:07:50 +0100
committerJustin Clark-Casey (justincc)2012-07-06 23:07:50 +0100
commit056c9a59b2fee1e459915bd1ca908107c7c9695d (patch)
treef163c93b07ff267f523fe2c31e90a7631526a30b /OpenSim/Region/Framework/Scenes/Scene.cs
parentMantis 6077 trim NPC chat on channel zero. (diff)
downloadopensim-SC_OLD-056c9a59b2fee1e459915bd1ca908107c7c9695d.zip
opensim-SC_OLD-056c9a59b2fee1e459915bd1ca908107c7c9695d.tar.gz
opensim-SC_OLD-056c9a59b2fee1e459915bd1ca908107c7c9695d.tar.bz2
opensim-SC_OLD-056c9a59b2fee1e459915bd1ca908107c7c9695d.tar.xz
Add assert to attachment regression tests to check that number of objects in the scene graph
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs11
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>