Exemplo n.º 1
0
 public void Play(string animationName = null)
 {
     if (string.IsNullOrEmpty(animationName))
     {
         animationName = animations[currentAnimationIndex].name;
     }
     for (int i = 0; i < animations.Length; i++)
     {
         var animation = animations[i];
         if (animation.AnimationName == animationName)
         {
             SpriteSheetManager.SetAnimation(managedEntity, animation);
             currentAnimationIndex = i;
             return;
         }
     }
 }
Exemplo n.º 2
0
        public static void Play(EntityCommandBuffer buffer, Entity e, BufferHook hook, string animationName = null)
        {
            SpriteSheetAnimator animator = SpriteSheetCache.GetAnimator(e);

            if (string.IsNullOrEmpty(animationName))
            {
                animationName = animator.animations[animator.currentAnimationIndex].name;
            }
            for (int i = 0; i < animator.animations.Length; i++)
            {
                var animation = animator.animations[i];
                if (animation.AnimationName == animationName)
                {
                    SpriteSheetManager.SetAnimation(buffer, e, animation, hook);
                    animator.currentAnimationIndex = i;
                    return;
                }
            }
        }