diff options
| author | Alex <zuedev@gmail.com> | 2026-06-11 23:15:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-11 23:15:14 +0100 |
| commit | 9ab4aa10b2e425df818957ffb2bc5cd6d2df4c51 (patch) | |
| tree | aa828d6eb0b8d88fe39afe12d77ca36ef81b6f56 /Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs | |
| download | VRCog-9ab4aa10b2e425df818957ffb2bc5cd6d2df4c51.tar VRCog-9ab4aa10b2e425df818957ffb2bc5cd6d2df4c51.tar.gz VRCog-9ab4aa10b2e425df818957ffb2bc5cd6d2df4c51.tar.bz2 VRCog-9ab4aa10b2e425df818957ffb2bc5cd6d2df4c51.tar.xz VRCog-9ab4aa10b2e425df818957ffb2bc5cd6d2df4c51.zip | |
Initial commit
Diffstat (limited to 'Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs')
| -rw-r--r-- | Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs b/Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs new file mode 100644 index 0000000..b5250de --- /dev/null +++ b/Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs @@ -0,0 +1,10 @@ +using UnityEditor; + +public class ExampleEditorScript +{ + [MenuItem("Example Editor Script/Test")] + static void Test() + { + EditorUtility.DisplayDialog("Example Script", "Opened This Dialog", "OK"); + } +} |
