diff options
author | Justin Clark-Casey (justincc) | 2010-06-08 15:07:57 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-06-08 15:07:57 +0100 |
commit | b6076d7b337dc087807e56cdbe74ef47dc1b66b3 (patch) | |
tree | 7eb2f57ec5f4e62d36f69389c112402d76595ea1 /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |
parent | Add a call to SOG.ResumeScripts() after region crossing / teleport (diff) | |
download | opensim-SC-b6076d7b337dc087807e56cdbe74ef47dc1b66b3.zip opensim-SC-b6076d7b337dc087807e56cdbe74ef47dc1b66b3.tar.gz opensim-SC-b6076d7b337dc087807e56cdbe74ef47dc1b66b3.tar.bz2 opensim-SC-b6076d7b337dc087807e56cdbe74ef47dc1b66b3.tar.xz |
Reduce number of full updates sent on region crossing for attachments/huds to 1 from 3
This is one step towards reducing hud glitches on region crossing, since the viewer fails to display prims if it receives child full updates before the root prim full update
This commit also introduces a mechanism in LLClientView to stop child attachment updates ever going out before the root one
This is a very temporary mechanism and will be commented out when the next step of the fix (to give root prims higher udpate priority) is committed
This code is a foreport from the equivalent changes in 0.6.9-post-fixes
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 837d3a2..78c2566 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -2012,7 +2012,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2012 | /// </summary> | 2012 | /// </summary> |
2013 | public void ScheduleGroupForFullUpdate() | 2013 | public void ScheduleGroupForFullUpdate() |
2014 | { | 2014 | { |
2015 | // m_log.DebugFormat("[SOG]: Scheduling full update for {0} {1}", Name, UUID); | 2015 | if (IsAttachment) |
2016 | m_log.DebugFormat("[SOG]: Scheduling full update for {0} {1}", Name, LocalId); | ||
2016 | 2017 | ||
2017 | checkAtTargets(); | 2018 | checkAtTargets(); |
2018 | RootPart.ScheduleFullUpdate(); | 2019 | RootPart.ScheduleFullUpdate(); |