Skip to content

Commit

Permalink
Set SelectionModule's initialization order to -5 to ensure it does no…
Browse files Browse the repository at this point in the history
…t clear the ignore list after objects are added
  • Loading branch information
mtschoen-unity committed Aug 12, 2020
1 parent 1c66207 commit 0d8b00d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Scripts/Modules/SelectionModule/SelectionModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sealed class SelectionModule : ScriptableSettings<SelectionModule>, IDelayedInit

public event Action<Transform> selected;

public int initializationOrder { get { return 0; } }
public int initializationOrder { get { return -5; } }
public int shutdownOrder { get { return 0; } }
public int connectInterfaceOrder { get { return 0; } }

Expand Down

0 comments on commit 0d8b00d

Please sign in to comment.