コード例 #1
0
    //Moves back and forth shooting behind them
    protected override IEnumerator Run()
    {
        //SPAWN ON RIGHT SIDE
        if (transform.position.x > 0)
        {
            rigidbody2d.velocity = new Vector2(-3, 0);
            rigidbody2d.rotation = 90;
            yield return(new WaitForSeconds(2));

            rigidbody2d.velocity = Vector2.zero;

            while (alive)
            {
                fireData.Facing(Vector2.down);
                for (int j = 0; j < 1 + Difficulty; j++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = new Vector2(-14, 0);
                for (int i = 0; i < (4 * (Difficulty + 1)); i++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = Vector2.zero;
                rigidbody2d.MoveRotation(270);

                fireData.Facing(Vector2.up);
                for (int j = 0; j < 1 + Difficulty; j++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = new Vector2(14, 0);
                for (int i = 0; i < (4 * (Difficulty + 1)); i++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = Vector2.zero;
                rigidbody2d.MoveRotation(90);
            }

            //SPAWN ON LEFT SIDE
        }
        else if (transform.position.x < 0)
        {
            rigidbody2d.velocity = new Vector2(3, 0);
            rigidbody2d.rotation = 270;
            yield return(new WaitForSeconds(2));

            rigidbody2d.velocity = Vector2.zero;

            while (alive)
            {
                fireData.Facing(Vector2.up);
                for (int j = 0; j < 1 + Difficulty; j++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = new Vector2(14, 0);
                for (int i = 0; i < (4 * (Difficulty + 1)); i++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = Vector2.zero;
                rigidbody2d.MoveRotation(90);

                fireData.Facing(Vector2.down);
                for (int j = 0; j < 1 + Difficulty; j++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = new Vector2(-14, 0);
                for (int i = 0; i < (4 * (Difficulty + 1)); i++)
                {
                    fireData.Fire();
                    yield return(new WaitForSeconds(0.5f / (Difficulty + 1f)));
                }
                rigidbody2d.velocity = Vector2.zero;
                rigidbody2d.MoveRotation(270);
            }
        }
    }