Example #1
0
    void Shoot()
    {
        GameObject newBull;

        for (int i = 0; i < 8; i++)
        {
            newBull = Instantiate(bullet, transform.position, transform.rotation);

            StandardFireFunctions.FireClusterAtPlayer(newBull);
        }
    }