Initial commit for new project

This commit is contained in:
Keenan Turley
2024-12-20 21:19:27 -08:00
commit 58cca5bd6b
10 changed files with 717 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!");
}
}