unity-compile-in-background
unity-compile-in-background copied to clipboard
add delay in loop makes watcher use 0% CPU!
// 非同期で監視を続けるために無限ループに入る
while (true)
{
Thread.Sleep(1000);
}
this makes cpu use 0%!
and it still works well.