Pause() public method

public Pause ( ) : void
return void
Example #1
0
 public void SetOnMagicLock()
 {
     if (state != State.Dead)
     {
         isMagicLock      = true;
         timeCoolDownTick = 5;
         anim.Pause();
     }
 }
Example #2
0
    public void SetPause()
    {
        if (anim == null)
        {
            anim = GetComponent <exSpriteAnimation>();
        }

        if (anim != null && anim.IsPlaying())
        {
            anim.Pause();
        }
    }
Example #3
0
 private void tackleBattleStart()
 {
     m_animation.Pause();
 }
Example #4
0
 public void SetPause()
 {
     head.Pause();
     body.Pause();
     horse.Pause();
 }