ソースコード using System; using System.Linq; using UnityEditor; public static class Utils { public static Type[] GetAllEditorWindowTypes() { var editorWindow = typeof( EditorWindow ); var result = AppDomain.CurrentDomain .GetAssemblies() .SelectMany( c => c.GetTypes() ) .Where( c => c.IsSubclassOf(…