aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Animation
diff options
context:
space:
mode:
authorUbitUmarov2014-08-22 20:01:07 +0100
committerUbitUmarov2014-08-22 20:01:07 +0100
commit0295e6822dd6408b6dc6580b4a7a92b0f057d4b8 (patch)
tree15c6b151ecc65459df94dddafc4c2fc7d4994d7a /OpenSim/Region/Framework/Scenes/Animation
parentMerge branch 'master' into ubitworkmaster (diff)
downloadopensim-SC_OLD-0295e6822dd6408b6dc6580b4a7a92b0f057d4b8.zip
opensim-SC_OLD-0295e6822dd6408b6dc6580b4a7a92b0f057d4b8.tar.gz
opensim-SC_OLD-0295e6822dd6408b6dc6580b4a7a92b0f057d4b8.tar.bz2
opensim-SC_OLD-0295e6822dd6408b6dc6580b4a7a92b0f057d4b8.tar.xz
some cleanup ( well or not )
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Animation')
-rw-r--r--OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs b/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs
index 668087f..fdadd32 100644
--- a/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs
+++ b/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs
@@ -576,6 +576,16 @@ namespace OpenSim.Region.Framework.Scenes.Animation
576 m_scenePresence.SendAnimPack(animations, seqs, objectIDs); 576 m_scenePresence.SendAnimPack(animations, seqs, objectIDs);
577 } 577 }
578 578
579 public void GetArrays(out UUID[] animIDs, out int[] sequenceNums, out UUID[] objectIDs)
580 {
581 animIDs = null;
582 sequenceNums = null;
583 objectIDs = null;
584
585 if(m_animations != null)
586 m_animations.GetArrays(out animIDs, out sequenceNums, out objectIDs);
587 }
588
579 public void SendAnimPackToClient(IClientAPI client) 589 public void SendAnimPackToClient(IClientAPI client)
580 { 590 {
581 if (m_scenePresence.IsChildAgent) 591 if (m_scenePresence.IsChildAgent)