Obsolete IMGUI version, please use UIToolkit version
Scene navigation and debug utils for unity toolbar
This package requires https://github.com/marijnz/unity-toolbar-extender for it to work. Since Unity does not support git dependencies for packages, you need to install it separately.
- Easy navigation between the scenes in build, hold alt to load in additive mode [Buttons]
- Redirect to the first scene in build on play mode enter [Toggle]
- Debug (Works only in Development build and Editor) [Toggle]
- Time scale [Slider]
- Toggle any of the above modules visibility via Tools/Metsker/ToolbarUtils
using ToolbarUtils;
public class Example
{
void Foo()
{
if(DebugMode.Enabled)
{
//Your debug logic
}
else
{
//Your release logic
}
}
}
