From 69a9cbb5c913bbb2426657ce4358ba9ce5cb34c3 Mon Sep 17 00:00:00 2001 From: Giuseppe Toto Date: Sat, 15 May 2021 15:17:18 +0200 Subject: [PATCH] fix: AllowGroupCreation checkbox hidden when Odin is present (close #45) (#49) --- .../OdinSupport/AddressableImporterFilterOdinHandler.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs b/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs index 5cc88d8..ccd8dfc 100644 --- a/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs +++ b/Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs @@ -17,6 +17,14 @@ public class AddressableImporterFilterOdinHandler : ScriptableObject private List> _filters; //private List _filteredRules; private bool _sourceChanged = false; + + [ShowInInspector] + [PropertyOrder(-1)] + private bool AllowGroupCreation + { + set => _importSettings.allowGroupCreation = value; + get => _importSettings.allowGroupCreation; + } [SerializeField] [HideLabel]