UnityEditor.ShaderInspectorPlatformsPopup.DrawSeparator C# (CSharp) Method

DrawSeparator() private method

private DrawSeparator ( Rect &rect ) : void
rect UnityEngine.Rect
return void
        private void DrawSeparator(ref Rect rect)
        {
            GUI.Label(new Rect(rect.x + 5f, rect.y + 3f, rect.width - 10f, 3f), GUIContent.none, Styles.separator);
            rect.y += 6f;
        }