Unity编辑器:清空控制台(Console)

 1 static MethodInfo clearMethod = null;
 2     /// 
 3     /// 清空log信息
 4     /// 
 5     private static void ClearConsole()
 6     {
 7         if (clearMethod == null)
 8         {
 9             Type log = typeof(EditorWindow).Assembly.GetType("UnityEditor.LogEntries");
10             clearMethod = log.GetMethod("Clear");
11         }
12         clearMethod.Invoke(null, null);
13     }

 

你可能感兴趣的:(Unity编辑器:清空控制台(Console))