BattleArea.GetRandomAdd C# (CSharp) 메소드

GetRandomAdd() 개인적인 메소드

private GetRandomAdd ( ) : Vector3
리턴 Vector3
    private Vector3 GetRandomAdd()
    {
        Vector3 add = Vector3.zero;
        add.x += Random.Range(-this.collider.bounds.extents.x, this.collider.bounds.extents.x);
        add.z += Random.Range(-this.collider.bounds.extents.z, this.collider.bounds.extents.z);
        return add;
    }