aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index aa8b51a..9144bb9 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -73,7 +73,7 @@ namespace OpenSim.Region.Framework.Scenes
73 /// The scene graph for this scene 73 /// The scene graph for this scene
74 /// </value> 74 /// </value>
75 /// TODO: Possibly stop other classes being able to manipulate this directly. 75 /// TODO: Possibly stop other classes being able to manipulate this directly.
76 public SceneGraph m_sceneGraph; 76 private SceneGraph m_sceneGraph;
77 77
78 /// <summary> 78 /// <summary>
79 /// Are we applying physics to any of the prims in this scene? 79 /// Are we applying physics to any of the prims in this scene?
@@ -393,6 +393,15 @@ namespace OpenSim.Region.Framework.Scenes
393 get { return shuttingdown; } 393 get { return shuttingdown; }
394 } 394 }
395 395
396 /// <value>
397 /// The scene graph for this scene
398 /// </value>
399 /// TODO: Possibly stop other classes being able to manipulate this directly.
400 public SceneGraph SceneGraph
401 {
402 get { return m_sceneGraph; }
403 }
404
396 protected virtual void RegisterDefaultSceneEvents() 405 protected virtual void RegisterDefaultSceneEvents()
397 { 406 {
398 IDialogModule dm = RequestModuleInterface<IDialogModule>(); 407 IDialogModule dm = RequestModuleInterface<IDialogModule>();