Skip to content

Instantly share code, notes, and snippets.

@dgroft
Created February 17, 2014 19:56
Show Gist options
  • Save dgroft/9057837 to your computer and use it in GitHub Desktop.
Save dgroft/9057837 to your computer and use it in GitHub Desktop.
Create a progress bar embedded in a Unity editor window
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