1. 程式人生 > >Unity編輯器:消空控制檯(Console)

Unity編輯器:消空控制檯(Console)

 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 }