aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
diff options
context:
space:
mode:
authorUbitUmarov2018-12-28 13:52:59 +0000
committerUbitUmarov2018-12-28 13:52:59 +0000
commit4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4 (patch)
tree6e8200b3b7a3c0465853e42bbd790a59ccd4e312 /OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
parentupdate pbs (diff)
downloadopensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.zip
opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.gz
opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.bz2
opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.xz
now break several things at same time... sog/sop updates, threads options,...
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs5
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;