EyeBossManager.Shoot C# (CSharp) Méthode

Shoot() public méthode

public Shoot ( ) : IEnumerator
Résultat IEnumerator
    public override IEnumerator Shoot()
    {
        while (true) {
            if (inPlane) {
                for (int i = 0; i < characters.Length; i++) fireTurret();
                yield return new WaitForSeconds(firingDelay);
            }
            else yield return new WaitForSeconds(1f);
        }
    }