Skip to content

Instantly share code, notes, and snippets.

@baba-s
Created March 23, 2024 00:23
Show Gist options
  • Save baba-s/caaa7565d6e0159a9d39547671b561b9 to your computer and use it in GitHub Desktop.
Save baba-s/caaa7565d6e0159a9d39547671b561b9 to your computer and use it in GitHub Desktop.
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