Пример #1
0
        public Animateable(IAnimateable provider)
        {
            animations    = new List <Animation>();
            this.provider = provider;

            //autoregister
            animateables.Add(this);
        }
 public void Execute(IAnimateable transform, Movement moveDirection)
 {
     if (Hero.State == States.Jumping)
     {
         if (transform.Animator.previousAnimation == PossibleAnimations.RunLeft || transform.Animator.previousAnimation == PossibleAnimations.IdleLeft)
         {
             transform.AnimToPlay = PossibleAnimations.JumpLeft;
         }
         if (transform.Animator.previousAnimation == PossibleAnimations.RunRight || transform.Animator.previousAnimation == PossibleAnimations.IdleRight)
         {
             transform.AnimToPlay = PossibleAnimations.JumpRight;
         }
     }
     else
     {
         if (moveDirection == Movement.MoveRight)
         {
             transform.AnimToPlay = PossibleAnimations.RunLeft;
         }
         if (moveDirection == Movement.MoveLeft)
         {
             transform.AnimToPlay = PossibleAnimations.RunRight;
         }
         if (moveDirection == Movement.Idle)
         {
             if (transform.Animator.previousAnimation == PossibleAnimations.RunLeft || transform.Animator.previousAnimation == PossibleAnimations.JumpLeft)
             {
                 transform.AnimToPlay = PossibleAnimations.IdleLeft;
             }
             if (transform.Animator.previousAnimation == PossibleAnimations.RunRight || transform.Animator.previousAnimation == PossibleAnimations.JumpRight)
             {
                 transform.AnimToPlay = PossibleAnimations.IdleRight;
             }
         }
     }
 }
Пример #3
0
 public AnimateableControlBlock(long scheduledStartTick, IAnimateable component)
 {
     this.ScheduledStartTick = scheduledStartTick;
     this.Component          = component;
 }
Пример #4
0
 public AnimateableControlBlock(long scheduledStartTick, IAnimateable component) {
     this.ScheduledStartTick = scheduledStartTick;
     this.Component = component;
 }