aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-09-23 18:11:05 +0100
committerJustin Clark-Casey (justincc)2014-10-02 22:30:44 +0100
commitafa85e6b3cde51704aa65d291d626f9babb095d5 (patch)
tree9f33a799426e347e314f8b4252339c31f0aa8efb
parentFix key name in example Regions.ini file (diff)
downloadopensim-SC_OLD-afa85e6b3cde51704aa65d291d626f9babb095d5.zip
opensim-SC_OLD-afa85e6b3cde51704aa65d291d626f9babb095d5.tar.gz
opensim-SC_OLD-afa85e6b3cde51704aa65d291d626f9babb095d5.tar.bz2
opensim-SC_OLD-afa85e6b3cde51704aa65d291d626f9babb095d5.tar.xz
Set appearance refresh to false by default.
This setting was originally added some time ago to deal with issues where appearance was not received properly by all users. However, it does not scale well with large numbers of agents. Disabling to see if the original problem has abated or whether this will have to be tackled in another way.
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs2
-rw-r--r--bin/OpenSimDefaults.ini2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index a0b2123..0399a52 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -1018,7 +1018,7 @@ namespace OpenSim.Region.Framework.Scenes
1018 } 1018 }
1019 1019
1020 // FIXME: Ultimately this should be in a module. 1020 // FIXME: Ultimately this should be in a module.
1021 SendPeriodicAppearanceUpdates = true; 1021 SendPeriodicAppearanceUpdates = false;
1022 1022
1023 IConfig appearanceConfig = m_config.Configs["Appearance"]; 1023 IConfig appearanceConfig = m_config.Configs["Appearance"];
1024 if (appearanceConfig != null) 1024 if (appearanceConfig != null)
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index 54f3da6..f9341cf 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -772,7 +772,7 @@
772 ; If true, avatar appearance information is resent to other avatars in the simulator every 60 seconds. 772 ; If true, avatar appearance information is resent to other avatars in the simulator every 60 seconds.
773 ; This may help with some situations where avatars are persistently grey, though it will not help 773 ; This may help with some situations where avatars are persistently grey, though it will not help
774 ; in other situations (e.g. appearance baking failures where the avatar only appears as a cloud to others). 774 ; in other situations (e.g. appearance baking failures where the avatar only appears as a cloud to others).
775 ResendAppearanceUpdates = true 775 ResendAppearanceUpdates = false
776 776
777 ; Turning this on responds to CachedTexture packets to possibly avoid rebaking the avatar 777 ; Turning this on responds to CachedTexture packets to possibly avoid rebaking the avatar
778 ; on every login 778 ; on every login