// Personaje quieto
 public void Idle()
 {
     state = states.IDLE;
     character.stats.superPowerActive = false;
     character.stats.characterAttack  = false;
     animations.idleAnimation();
 }