mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
11 lines
203 B
C#
11 lines
203 B
C#
using TriInspector;
|
|
using UnityEngine;
|
|
|
|
public class Buttons_ButtonSample : ScriptableObject
|
|
{
|
|
[Button("Click me!")]
|
|
private void DoButton()
|
|
{
|
|
Debug.Log("Button clicked!");
|
|
}
|
|
} |