@@ -77,6 +77,10 @@ private static void CreateConfigElements()
77
77
"The key to enable or disable UnityExplorer's menu and features." ,
78
78
KeyCode . F7 ) ;
79
79
80
+ Hide_On_Startup = new ConfigElement < bool > ( "Hide On Startup" ,
81
+ "Should UnityExplorer be hidden on startup?" ,
82
+ false ) ;
83
+
80
84
Target_Display = new ConfigElement < int > ( "Target Display" ,
81
85
"The monitor index for UnityExplorer to use, if you have multiple. 0 is the default display, 1 is secondary, etc. " +
82
86
"Restart recommended when changing this setting. Make sure your extra monitors are the same resolution as your primary monitor." ,
@@ -86,16 +90,12 @@ private static void CreateConfigElements()
86
90
"The vertical anchor of the main UnityExplorer Navbar, in case you want to move it." ,
87
91
UIManager . VerticalAnchor . Top ) ;
88
92
89
- Hide_On_Startup = new ConfigElement < bool > ( "Hide On Startup" ,
90
- "Should UnityExplorer be hidden on startup?" ,
91
- false ) ;
92
-
93
93
World_MouseInspect_Keybind = new ( "World Mouse-Inspect Keybind" ,
94
94
"Optional keybind to being a World-mode Mouse Inspect." ,
95
95
KeyCode . None ) ;
96
96
97
97
UI_MouseInspect_Keybind = new ( "UI Mouse-Inspect Keybind" ,
98
- "Optional keybind to begin a UI_mode Mouse Inspect." ,
98
+ "Optional keybind to begin a UI-mode Mouse Inspect." ,
99
99
KeyCode . None ) ;
100
100
101
101
Force_Unlock_Mouse = new ConfigElement < bool > ( "Force Unlock Mouse" ,
0 commit comments