BitmapSaverWindow.DrawExporter C# (CSharp) Method

DrawExporter() private method

private DrawExporter ( ) : void
return void
    private void DrawExporter()
    {
        Rect  box = new Rect(0, EditorRect.height - 50, EditorRect.width, 50);

        GUI.BeginGroup( box );

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

            GUI.skin.button.fontSize = 8;
            GUI.skin.label.fontSize = 8;

            GUI.Label(new Rect(   5,  0, 100, 15), "Export Files : " + fLength );
            GUI.Label(new Rect( box.width/2 + 180, 20, 70, 15), "Delete Resource" );
            saveSource = GUI.Toggle( new Rect(box.width/2 + 250, 20, 80, 20 ), saveSource, new GUIContent("", "Remove the copied asset resource data"));

            if( draw )GUI.enabled = ( fLength > 0 ) ? true : false;
                if( GUI.Button( new Rect( box.width/2 - 75, 20, 150, 20 ), new GUIContent( "Start Batch Export", "Press to begin the convert process")) )  SaveAssets();
            if( draw )GUI.enabled = true;

        GUI.EndGroup();
    }