GameMachine.NpcGroup.CreateFormationPoint C# (CSharp) 메소드

CreateFormationPoint() 개인적인 메소드

private CreateFormationPoint ( ) : GameObject
리턴 UnityEngine.GameObject
        private GameObject CreateFormationPoint()
        {
            if (showFormationPoint) {
                GameObject go = GameObject.CreatePrimitive(PrimitiveType.Sphere);
                Destroy(go.GetComponent<Collider>());
                return go;
            } else {
                return new GameObject();
            }
        }