aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
diff options
context:
space:
mode:
authorUbitUmarov2012-02-27 01:31:29 +0000
committerUbitUmarov2012-02-27 01:31:29 +0000
commitf451f672131bfa293b9371984435a00c03174ff5 (patch)
treed8d85e06b4351d8b175e6353c5f824f8580d7fda /OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
parentMerge branch 'master' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parentMerge branch 'ubitwork' (diff)
downloadopensim-SC-f451f672131bfa293b9371984435a00c03174ff5.zip
opensim-SC-f451f672131bfa293b9371984435a00c03174ff5.tar.gz
opensim-SC-f451f672131bfa293b9371984435a00c03174ff5.tar.bz2
opensim-SC-f451f672131bfa293b9371984435a00c03174ff5.tar.xz
Merge branch 'master' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/KeyframeMotion.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/KeyframeMotion.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs b/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
index bf18f4d..b7b0d27 100644
--- a/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
+++ b/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
@@ -406,5 +406,17 @@ namespace OpenSim.Region.Framework.Scenes
406 m_group = tmp; 406 m_group = tmp;
407 return ms.ToArray(); 407 return ms.ToArray();
408 } 408 }
409
410 public void CrossingFailure()
411 {
412 // The serialization has stopped the timer, so let's wait a moment
413 // then retry the crossing. We'll get back here if it fails.
414 Util.FireAndForget(delegate (object x)
415 {
416 Thread.Sleep(60000);
417 if (m_running)
418 m_timer.Start();
419 });
420 }
409 } 421 }
410} 422}