diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs index b06e93c..b52f2fd 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | |||
@@ -172,6 +172,11 @@ namespace OpenSim.Region.ClientStack.Linden | |||
172 | if(m_doScriptSyntax && m_scriptSyntaxID != UUID.Zero) | 172 | if(m_doScriptSyntax && m_scriptSyntaxID != UUID.Zero) |
173 | m_features["LSLSyntaxId"] = OSD.FromUUID(m_scriptSyntaxID); | 173 | m_features["LSLSyntaxId"] = OSD.FromUUID(m_scriptSyntaxID); |
174 | 174 | ||
175 | OSDMap meshAnim = new OSDMap(); | ||
176 | meshAnim["AnimatedObjectMaxTris"] = OSD.FromInteger(10000); | ||
177 | meshAnim["MaxAgentAnimatedObjectAttachments"] = OSD.FromInteger(2); | ||
178 | m_features["AnimatedObjects"] = meshAnim; | ||
179 | |||
175 | // Extra information for viewers that want to use it | 180 | // Extra information for viewers that want to use it |
176 | // TODO: Take these out of here into their respective modules, like map-server-url | 181 | // TODO: Take these out of here into their respective modules, like map-server-url |
177 | OSDMap extrasMap; | 182 | OSDMap extrasMap; |