diff options
author | Teravus Ovares | 2009-01-22 01:50:00 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-01-22 01:50:00 +0000 |
commit | 6167019a058f70497dcb12a4521832c3065cd5c8 (patch) | |
tree | 75bb4dcc99d60ca71c96a9b24065a8a15df48cdd /OpenSim/Region/Environment/Scenes/Scene.cs | |
parent | * Add File cache for j2k layer decodes. This will make it so that the server... (diff) | |
download | opensim-SC_OLD-6167019a058f70497dcb12a4521832c3065cd5c8.zip opensim-SC_OLD-6167019a058f70497dcb12a4521832c3065cd5c8.tar.gz opensim-SC_OLD-6167019a058f70497dcb12a4521832c3065cd5c8.tar.bz2 opensim-SC_OLD-6167019a058f70497dcb12a4521832c3065cd5c8.tar.xz |
* Adds a Scene Getter property called SceneContents for the Scene's m_sceneGraph. This will allow it to be exposed to modules without resorting to referring to m_sceneGraph
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 3a0bbc3..436b24e 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -191,6 +191,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
191 | get { return m_authenticateHandler; } | 191 | get { return m_authenticateHandler; } |
192 | } | 192 | } |
193 | 193 | ||
194 | public SceneGraph SceneContents | ||
195 | { | ||
196 | get { return m_sceneGraph; } | ||
197 | } | ||
198 | |||
194 | // an instance to the physics plugin's Scene object. | 199 | // an instance to the physics plugin's Scene object. |
195 | public PhysicsScene PhysicsScene | 200 | public PhysicsScene PhysicsScene |
196 | { | 201 | { |