comment retarder entre les lignes dans l'unité

yield return new WaitForSeconds(/*here add the amount of seconds you want*/);

/* Quick Note : do not use "void" if you're gonna do this form of delaying
   use "IEnumerator" instead 

  so for an example, use "IEnumerator ShootGun" Instead of "void ShootGun" */
Thoughtful Tamarin