Beispiel #1
0
        private void OnEnable()
        {
            var tmp = new StringBuilder();

            var stats = GPUStatList.Create();

            Debug.Log(stats);
        }
Beispiel #2
0
 IEnumerator Process()
 {
     while (true)
     {
         var time  = System.DateTime.Now;
         var stats = GPUStatList.Create();
         Debug.Log($"{time}\n{stats}");
         yield return(new WaitForSeconds(tuner.interval));
     }
 }