Created
February 17, 2014 19:56
-
-
Save dgroft/9057837 to your computer and use it in GitHub Desktop.
Create a progress bar embedded in a Unity editor window
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rect r = EditorGUILayout.BeginVertical(); | |
EditorGUI.ProgressBar(r, 0.1f, "Doing something helpful"); | |
GUILayout.Space(18); | |
EditorGUILayout.EndVertical(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment