diff options
author | UbitUmarov | 2012-02-27 01:31:29 +0000 |
---|---|---|
committer | UbitUmarov | 2012-02-27 01:31:29 +0000 |
commit | f451f672131bfa293b9371984435a00c03174ff5 (patch) | |
tree | d8d85e06b4351d8b175e6353c5f824f8580d7fda /OpenSim/Region/Framework/Scenes/KeyframeMotion.cs | |
parent | Merge branch 'master' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff) | |
parent | Merge branch 'ubitwork' (diff) | |
download | opensim-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.cs | 12 |
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 | } |