Exemple #1
0
 public void AppendAnimationIntoCycle(List <AnimationInstance> newAnimationList, bool clearAnimationCycle = false)
 {
     if (clearAnimationCycle)
     {
         AnimationCycle.Clear();
     }
     AnimationCycle.AddRange(newAnimationList);
     CreateFlipbookInstances();
 }
Exemple #2
0
 public void AppendAnimationIntoCycle(AnimationInstance newAnimation, bool clearAnimationCycle = false)
 {
     if (clearAnimationCycle)
     {
         AnimationCycle.Clear();
     }
     AnimationCycle.Add(newAnimation);
     CreateFlipbookInstances();
 }