aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneBase.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneBase.cs16
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*/
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Reflection;
31using libsecondlife; 30using libsecondlife;
31using OpenSim.Framework.Communications.Caches;
32using OpenSim.Framework.Console; 32using OpenSim.Framework.Console;
33using OpenSim.Framework.Interfaces; 33using OpenSim.Framework.Interfaces;
34using OpenSim.Framework.Types; 34using OpenSim.Framework.Types;
35using OpenSim.Framework.Communications.Caches;
36using OpenSim.Region.Terrain; 35using OpenSim.Region.Terrain;
37using OpenSim.Framework;
38using OpenSim.Region.Environment.Interfaces;
39 36
40namespace OpenSim.Region.Environment.Scenes 37namespace 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