Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 594abc4

Browse files
committed
Move RuntimeProvider.Init to after config is loaded
1 parent 5e32691 commit 594abc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ExplorerCore.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace UnityExplorer
1717
public class ExplorerCore
1818
{
1919
public const string NAME = "UnityExplorer";
20-
public const string VERSION = "3.2.7";
20+
public const string VERSION = "3.2.8";
2121
public const string AUTHOR = "Sinai";
2222
public const string GUID = "com.sinai.unityexplorer";
2323

@@ -44,13 +44,13 @@ public ExplorerCore()
4444

4545
Instance = this;
4646

47-
RuntimeProvider.Init();
48-
4947
if (!Directory.Exists(EXPLORER_FOLDER))
5048
Directory.CreateDirectory(EXPLORER_FOLDER);
5149

5250
ExplorerConfig.OnLoad();
5351

52+
RuntimeProvider.Init();
53+
5454
InputManager.Init();
5555

5656
CursorUnlocker.Init();

0 commit comments

Comments
 (0)