From 594abc47f841fd429238ea4e337351665f8a78f2 Mon Sep 17 00:00:00 2001 From: Sinai Date: Wed, 24 Mar 2021 17:13:26 +1100 Subject: [PATCH] Move RuntimeProvider.Init to after config is loaded --- src/ExplorerCore.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ExplorerCore.cs b/src/ExplorerCore.cs index 5b52fb5..db88cbd 100644 --- a/src/ExplorerCore.cs +++ b/src/ExplorerCore.cs @@ -17,7 +17,7 @@ namespace UnityExplorer public class ExplorerCore { public const string NAME = "UnityExplorer"; - public const string VERSION = "3.2.7"; + public const string VERSION = "3.2.8"; public const string AUTHOR = "Sinai"; public const string GUID = "com.sinai.unityexplorer"; @@ -44,13 +44,13 @@ namespace UnityExplorer Instance = this; - RuntimeProvider.Init(); - if (!Directory.Exists(EXPLORER_FOLDER)) Directory.CreateDirectory(EXPLORER_FOLDER); ExplorerConfig.OnLoad(); + RuntimeProvider.Init(); + InputManager.Init(); CursorUnlocker.Init();