Button

Creates a Button that invokes a custom method when clicked.

Applied on Methods

[Button("Custom Test Button")]
private void Test()
{
    Debug.Log("Test method called!");
}

Last updated