unity-compile-in-background icon indicating copy to clipboard operation
unity-compile-in-background copied to clipboard

add delay in loop makes watcher use 0% CPU!

Open raveneer opened this issue 5 years ago • 0 comments

        // 非同期で監視を続けるために無限ループに入る
        while (true)
        {
            Thread.Sleep(1000);
        }

this makes cpu use 0%!

and it still works well.

image

raveneer avatar Nov 03 '19 05:11 raveneer