UnityEditor.CurveEditorWindow.SendEvent C# (CSharp) 메소드

SendEvent() 개인적인 메소드

private SendEvent ( string eventName, bool exitGUI ) : void
eventName string
exitGUI bool
리턴 void
        private void SendEvent(string eventName, bool exitGUI)
        {
            if (this.delegateView != null)
            {
                Event e = EditorGUIUtility.CommandEvent(eventName);
                base.Repaint();
                this.delegateView.SendEvent(e);
                if (exitGUI)
                {
                    GUIUtility.ExitGUI();
                }
            }
            GUI.changed = true;
        }