From b4cb7cf28fb674e7c0b7aa63610cd11fab791cd6 Mon Sep 17 00:00:00 2001 From: Favo Yang Date: Sat, 15 May 2021 23:09:10 +0800 Subject: [PATCH] fix: mute ODIN UnityEngine.ExitGUIException error temporarily --- .../AddressableImporterFilterOdinHandler.cs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs b/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs index 501216d..70bcd11 100644 --- a/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs +++ b/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs @@ -57,15 +57,9 @@ public void Initialize(AddressableImportSettings importSettings) public void Draw() { - try { - FilterRules(_searchFilter); - _drawerTree.Draw(); - ApplyChanges(); - } - catch (Exception e) { - Debug.LogError(e); - } - + FilterRules(_searchFilter); + _drawerTree.Draw(); + ApplyChanges(); } [Button]