UnityEditor.ZoomableArea.Styles.Styles C# (CSharp) Method

Styles() public method

public Styles ( bool minimalGUI ) : System
minimalGUI bool
return System
            public Styles(bool minimalGUI)
            {
                if (minimalGUI)
                {
                    this.visualSliderWidth = 0f;
                    this.sliderWidth = 15f;
                }
                else
                {
                    this.visualSliderWidth = 15f;
                    this.sliderWidth = 15f;
                }
            }
ZoomableArea.Styles