Skip to content

Extend the Unity Toolbar with your own Editor UI code.

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.meta
Notifications You must be signed in to change notification settings

marijnz/unity-toolbar-extender

Folders and files

NameName
Last commit message
Last commit date

Latest commit

dbd76ed · Apr 18, 2022

History

54 Commits
Sep 7, 2021
Mar 11, 2020
Aug 13, 2018
Mar 11, 2020
Aug 13, 2018
Mar 11, 2020
Jul 11, 2021
Mar 11, 2020
Apr 18, 2022
Mar 11, 2020

Repository files navigation

unity-toolbar-extender

Extend the Unity Toolbar with your own UI code. Please note that it's quite hacky as the code is relying on reflection to access Unity's internal code. It might not work anymore with a new Unity update but is proven to work up to (at least) Unity 2021.2.

Add buttons to quickly access scenes, add sliders, toggles, anything.

Imgur

Importing

To use this in your Unity project import it from Unity Package Manager. You can download it and import it from your hard drive, or link to it from github directly.

How to

This example code is shown in action in the gif below. Just hook up your GUI method to ToolbarExtender.LeftToolbarGUI or ToolbarExtender.RightToolbarGUI to draw left and right from the play buttons.

	[InitializeOnLoad]
	public class SceneSwitchLeftButton
	{
		static SceneSwitchLeftButton()
		{
			ToolbarExtender.LeftToolbarGUI.Add(OnToolbarGUI);
		}

		static void OnToolbarGUI()
		{
			GUILayout.FlexibleSpace();

			if(GUILayout.Button(new GUIContent("1", "Start Scene 1"), ToolbarStyles.commandButtonStyle))
			{
				SceneHelper.StartScene("Assets/ToolbarExtender/Example/Scenes/Scene1.unity");
			}

			if(GUILayout.Button(new GUIContent("2", "Start Scene 2"), ToolbarStyles.commandButtonStyle))
			{
				SceneHelper.StartScene("Assets/ToolbarExtender/Example/Scenes/Scene2.unity");
			}
		}
	}

Imgur

About

Extend the Unity Toolbar with your own Editor UI code.

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.meta

Stars

Watchers

Forks

Packages

No packages published

Languages