UnityEditor.CurvePresetsContentsForPopupWindow.OnGUI C# (CSharp) Method

OnGUI() public method

public OnGUI ( Rect rect ) : void
rect UnityEngine.Rect
return void
        public override void OnGUI(Rect rect)
        {
            this.InitIfNeeded();
            this.m_CurveLibraryEditor.OnGUI(rect, this.m_Curve);
            if (this.m_WantsToClose)
            {
                base.editorWindow.Close();
            }
        }