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(); } }; }
public void RefreshIntegrityCheck() { _results = SRDebugEditor.QuickIntegrityCheck().ToList(); }