Unity UItoolkit extensions for Rapid prototyping/development.
- UIToolkit for Debug
- Simple to use
- Same UI design as UnityEditor
- Higher performance than IMGUI
The package is available on the openupm registry. It's recommended to install it via openupm-cli.
openupm add com.went-bye.uitoolkit
Add following lines to the dependencies
section of the Packages/manifest.json
.
"com.went-bye.uitoolkit": "https://github.com/went-bye/DebigToolkit.git"
public class Sandbox : MonoBehaviour
{
DebugToolkit _toolkit;
void OnEnable()
{
_toolkit = gameObject.AddComponent<DebugToolkit>();
_toolkit.AddButton("Button",()=>Debug.Log("Hello World"));
}
}