UnityEditor.CurveEditorRectangleTool.HandleOverlayEvents C# (CSharp) Method

HandleOverlayEvents() public method

public HandleOverlayEvents ( ) : void
return void
        public void HandleOverlayEvents()
        {
            base.HandleClutchKeys();
            if (this.m_CurveEditor.settings.rectangleToolFlags == CurveEditorSettings.RectangleToolFlags.FullRectangleTool)
            {
                this.m_VBarBottom.HandleEvents();
                this.m_VBarTop.HandleEvents();
                this.m_VBar.HandleEvents();
                this.m_HBarLeft.HandleEvents();
                this.m_HBarRight.HandleEvents();
                this.m_HBar.HandleEvents();
            }
        }