コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

2020-08-04から1日間の記事一覧

【Unity】Console ウィンドウの検索欄に文字列を設定するエディタ拡張

ソースコード using System.Reflection; using UnityEditor; public static class Example { [MenuItem( "Tools/Hoge" )] private static void Hoge() { var assembly = typeof( Editor ).Assembly; var type = assembly.GetType( "UnityEditor.ConsoleWindo…