diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs index 90f8cb4..e49c95c 100644 --- a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs +++ b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs | |||
@@ -95,6 +95,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
95 | "List current scene options.", | 95 | "List current scene options.", |
96 | "active - if false then main scene update and maintenance loops are suspended.\n" | 96 | "active - if false then main scene update and maintenance loops are suspended.\n" |
97 | + "animations - if true then extra animations debug information is logged.\n" | 97 | + "animations - if true then extra animations debug information is logged.\n" |
98 | + "appear-refresh - if true then appearance is resent to other avatars every 60 seconds.\n" | ||
98 | + "child-repri - how far an avatar must move in meters before we update the position of its child agents in neighbouring regions.\n" | 99 | + "child-repri - how far an avatar must move in meters before we update the position of its child agents in neighbouring regions.\n" |
99 | + "client-pos-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" | 100 | + "client-pos-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" |
100 | + "client-rot-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" | 101 | + "client-rot-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" |
@@ -113,6 +114,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
113 | "Turn on scene debugging options.", | 114 | "Turn on scene debugging options.", |
114 | "active - if false then main scene update and maintenance loops are suspended.\n" | 115 | "active - if false then main scene update and maintenance loops are suspended.\n" |
115 | + "animations - if true then extra animations debug information is logged.\n" | 116 | + "animations - if true then extra animations debug information is logged.\n" |
117 | + "appear-refresh - if true then appearance is resent to other avatars every 60 seconds.\n" | ||
116 | + "child-repri - how far an avatar must move in meters before we update the position of its child agents in neighbouring regions.\n" | 118 | + "child-repri - how far an avatar must move in meters before we update the position of its child agents in neighbouring regions.\n" |
117 | + "client-pos-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" | 119 | + "client-pos-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" |
118 | + "client-rot-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" | 120 | + "client-rot-upd - the tolerance before clients are updated with new rotation information for an avatar.\n" |
@@ -146,6 +148,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
146 | ConsoleDisplayList cdl = new ConsoleDisplayList(); | 148 | ConsoleDisplayList cdl = new ConsoleDisplayList(); |
147 | cdl.AddRow("active", m_scene.Active); | 149 | cdl.AddRow("active", m_scene.Active); |
148 | cdl.AddRow("animations", m_scene.DebugAnimations); | 150 | cdl.AddRow("animations", m_scene.DebugAnimations); |
151 | cdl.AddRow("appear-refresh", m_scene.SendPeriodicAppearanceUpdates); | ||
149 | cdl.AddRow("child-repri", m_scene.ChildReprioritizationDistance); | 152 | cdl.AddRow("child-repri", m_scene.ChildReprioritizationDistance); |
150 | cdl.AddRow("client-pos-upd", m_scene.ClientPositionUpdateTolerance); | 153 | cdl.AddRow("client-pos-upd", m_scene.ClientPositionUpdateTolerance); |
151 | cdl.AddRow("client-rot-upd", m_scene.ClientRotationUpdateTolerance); | 154 | cdl.AddRow("client-rot-upd", m_scene.ClientRotationUpdateTolerance); |
@@ -197,6 +200,15 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
197 | m_scene.DebugAnimations = active; | 200 | m_scene.DebugAnimations = active; |
198 | } | 201 | } |
199 | 202 | ||
203 | if (options.ContainsKey("appear-refresh")) | ||
204 | { | ||
205 | bool newValue; | ||
206 | |||
207 | // FIXME: This can only come from the console at the moment but might not always be true. | ||
208 | if (ConsoleUtil.TryParseConsoleBool(MainConsole.Instance, options["appear-refresh"], out newValue)) | ||
209 | m_scene.SendPeriodicAppearanceUpdates = newValue; | ||
210 | } | ||
211 | |||
200 | if (options.ContainsKey("child-repri")) | 212 | if (options.ContainsKey("child-repri")) |
201 | { | 213 | { |
202 | double newValue; | 214 | double newValue; |