2013年6月27日 星期四

[Unity] 清除Console的Log - Clear Console

參考文章:

如果直接
using System

會造成UnityEnging.Object與object的衝突

using sys = System;

static void clearConsoleLog ()
{
 Assembly assembly = Assembly.GetAssembly(typeof(SceneView));
    sys.Type type = assembly.GetType("UnityEditorInternal.LogEntries");
    MethodInfo method = type.GetMethod ("Clear");
    method.Invoke (new object (), null);
}

沒有留言:

張貼留言