UnityEditor.SpriteEditorWindow.DoTextureGUIExtras C# (CSharp) Method

DoTextureGUIExtras() protected method

protected DoTextureGUIExtras ( ) : void
return void
        protected override void DoTextureGUIExtras()
        {
            if (!this.IsEditingDisabled())
            {
                this.HandleGizmoMode();
                if (this.multipleSprites)
                {
                    this.HandleRectCornerScalingHandles();
                }
                this.HandleBorderCornerScalingHandles();
                this.HandleBorderSidePointScalingSliders();
                if (this.multipleSprites)
                {
                    this.HandleRectSideScalingHandles();
                }
                this.HandleBorderSideScalingHandles();
                this.HandlePivotHandle();
                if (this.multipleSprites)
                {
                    this.HandleDragging();
                }
                this.HandleSelection();
                this.HandleFrameSelected();
                if (this.multipleSprites)
                {
                    this.HandleCreate();
                    this.HandleDelete();
                    this.HandleDuplicate();
                }
            }
        }