diff options
author | lbsa71 | 2007-09-19 00:30:55 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-19 00:30:55 +0000 |
commit | 8f0b03597b0bc8ea6873af9a55495407fae1ec56 (patch) | |
tree | f9f4de38379aebf2223ad4cb10a3d9ebcfa52a4f /OpenSim/Region/Environment/Scenes/SceneBase.cs | |
parent | * Moved SendLogoutPacket back to IClientAPI. (diff) | |
download | opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.zip opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.gz opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.bz2 opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.xz |
* Modernized ScriptManager to new interface-based module calls.
* 'remove redundant this qualifier' ftw
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneBase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneBase.cs | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs index c01157d..7b2e17f 100644 --- a/OpenSim/Region/Environment/Scenes/SceneBase.cs +++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs | |||
@@ -27,15 +27,12 @@ | |||
27 | */ | 27 | */ |
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
31 | using libsecondlife; | 30 | using libsecondlife; |
31 | using OpenSim.Framework.Communications.Caches; | ||
32 | using OpenSim.Framework.Console; | 32 | using OpenSim.Framework.Console; |
33 | using OpenSim.Framework.Interfaces; | 33 | using OpenSim.Framework.Interfaces; |
34 | using OpenSim.Framework.Types; | 34 | using OpenSim.Framework.Types; |
35 | using OpenSim.Framework.Communications.Caches; | ||
36 | using OpenSim.Region.Terrain; | 35 | using OpenSim.Region.Terrain; |
37 | using OpenSim.Framework; | ||
38 | using OpenSim.Region.Environment.Interfaces; | ||
39 | 36 | ||
40 | namespace OpenSim.Region.Environment.Scenes | 37 | namespace OpenSim.Region.Environment.Scenes |
41 | { | 38 | { |
@@ -67,6 +64,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
67 | protected AssetCache assetCache; | 64 | protected AssetCache assetCache; |
68 | 65 | ||
69 | #region Update Methods | 66 | #region Update Methods |
67 | |||
70 | /// <summary> | 68 | /// <summary> |
71 | /// Normally called once every frame/tick to let the world preform anything required (like running the physics simulation) | 69 | /// Normally called once every frame/tick to let the world preform anything required (like running the physics simulation) |
72 | /// </summary> | 70 | /// </summary> |
@@ -104,6 +102,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
104 | #endregion | 102 | #endregion |
105 | 103 | ||
106 | #region Add/Remove Agent/Avatar | 104 | #region Add/Remove Agent/Avatar |
105 | |||
107 | /// <summary> | 106 | /// <summary> |
108 | /// | 107 | /// |
109 | /// </summary> | 108 | /// </summary> |
@@ -126,7 +125,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
126 | /// <returns></returns> | 125 | /// <returns></returns> |
127 | public virtual RegionInfo RegionInfo | 126 | public virtual RegionInfo RegionInfo |
128 | { | 127 | { |
129 | get { return this.m_regInfo; } | 128 | get { return m_regInfo; } |
130 | } | 129 | } |
131 | 130 | ||
132 | public object SyncRoot | 131 | public object SyncRoot |
@@ -140,6 +139,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
140 | } | 139 | } |
141 | 140 | ||
142 | #region Shutdown | 141 | #region Shutdown |
142 | |||
143 | /// <summary> | 143 | /// <summary> |
144 | /// Tidy before shutdown | 144 | /// Tidy before shutdown |
145 | /// </summary> | 145 | /// </summary> |
@@ -147,7 +147,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
147 | { | 147 | { |
148 | try | 148 | try |
149 | { | 149 | { |
150 | this.EventManager.TriggerShutdown(); | 150 | EventManager.TriggerShutdown(); |
151 | } | 151 | } |
152 | catch (Exception e) | 152 | catch (Exception e) |
153 | { | 153 | { |
@@ -156,7 +156,5 @@ namespace OpenSim.Region.Environment.Scenes | |||
156 | } | 156 | } |
157 | 157 | ||
158 | #endregion | 158 | #endregion |
159 | |||
160 | |||
161 | } | 159 | } |
162 | } | 160 | } \ No newline at end of file |