blob: b5250de4a6abe9566ab785e63ff6f050c1027de3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using UnityEditor;
public class ExampleEditorScript
{
[MenuItem("Example Editor Script/Test")]
static void Test()
{
EditorUtility.DisplayDialog("Example Script", "Opened This Dialog", "OK");
}
}
|