Created
March 23, 2024 00:23
-
-
Save baba-s/caaa7565d6e0159a9d39547671b561b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEditor; | |
[EditorWindowTitle | |
( | |
title = "ピカチュウ", | |
icon = "Assets/icon.png" | |
)] | |
public sealed class Example : EditorWindow | |
{ | |
[MenuItem( "Tools/Hoge" )] | |
private static void Open() | |
{ | |
GetWindow<Example>(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment