首页 > 技术文章 > Unity编辑器:清空控制台(Console)

yougoo 2018-12-06 10:45 原文

 1 static MethodInfo clearMethod = null;
 2     /// <summary>
 3     /// 清空log信息
 4     /// </summary>
 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     }

 

推荐阅读