EyeBossManager.Shoot C# (CSharp) Method

Shoot() public method

public Shoot ( ) : IEnumerator
return 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);
        }
    }