Skip to content

Instantly share code, notes, and snippets.

@jinwoo-lee-github
Last active December 30, 2015 21:19
Show Gist options
  • Save jinwoo-lee-github/7886890 to your computer and use it in GitHub Desktop.
Save jinwoo-lee-github/7886890 to your computer and use it in GitHub Desktop.
editor window toolbar
void OnGUI()
{
#region ToolBar
GUILayout.BeginHorizontal(EditorStyles.toolbar);
if (GUILayout.Button("Clear All", EditorStyles.toolbarButton))
{
}
GUILayout.FlexibleSpace();
GUILayout.EndHorizontal();
#endregion
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment