Пример #1
0
 static SRIntegrityCheckWindow()
 {
     // Delay call to prevent any UI stalls after compile complete.
     EditorApplication.delayCall += () =>
     {
         if (!_isOpen && SRDebugEditor.QuickIntegrityCheck().Any())
         {
             Debug.Log("[SRDebugger] Some issues have been detected with SRDebugger, opening integrity check window.");
             Open();
         }
     };
 }
Пример #2
0
 public void RefreshIntegrityCheck()
 {
     _results = SRDebugEditor.QuickIntegrityCheck().ToList();
 }