Skip to content

Commit

Permalink
fix: AllowGroupCreation checkbox hidden when Odin is present (close #45
Browse files Browse the repository at this point in the history
…) (#49)
  • Loading branch information
gtoto007 authored May 15, 2021
1 parent 1c8b0fa commit 69a9cbb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Editor/OdinSupport/AddressableImporterFilterOdinHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ public class AddressableImporterFilterOdinHandler : ScriptableObject
private List<Func<AddressableImportRule, string, bool>> _filters;
//private List<AddressableImportRule> _filteredRules;
private bool _sourceChanged = false;

[ShowInInspector]
[PropertyOrder(-1)]
private bool AllowGroupCreation
{
set => _importSettings.allowGroupCreation = value;
get => _importSettings.allowGroupCreation;
}

[SerializeField]
[HideLabel]
Expand Down

0 comments on commit 69a9cbb

Please sign in to comment.