BitmapSaverWindow.DrawDirectory C# (CSharp) Method

DrawDirectory() private method

private DrawDirectory ( ) : void
return void
    private void DrawDirectory()
    {
        Rect   box 		= new Rect(5, 5, EditorRect.width-10, 48 );
        float  boxWidth = box.width - 20;

        DrawRect( new Rect( 0,0, EditorRect.width, 15), new Color(.6f,.6f,.6f));

        GUI.skin.label.fontSize = 8;
        GUI.skin.button.fontSize = 8;
        EditorStyles.popup.fontSize = 8;
        GUI.skin.textField.alignment = TextAnchor.MiddleLeft;

        GUI.Label(new Rect( 5, 0, 70, 15) , "Target Folder" );
        GUI.BeginGroup( new Rect(5, 15, box.width, 150));
            EditorGUI.TextField( new Rect( 10, 8, boxWidth-10 , 20 ),  fPath);
        GUI.EndGroup();
    }