Initial commit for new project

This commit is contained in:
Keenan Turley
2024-12-21 21:47:18 -08:00
commit 5fd8683794
10 changed files with 807 additions and 0 deletions

8
Editor/MyEditorMenu.cs Normal file
View File

@@ -0,0 +1,8 @@
public static class MyEditorMenu
{
[Menu("Editor", "$title/My Menu Option")]
public static void OpenMyMenu()
{
EditorUtility.DisplayDialog("It worked!", "This is being called from your library's editor code!");
}
}