mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2024-12-23 01:59:40 +08:00
Remove duplicate UIManager.Update call
This commit is contained in:
parent
1d1dad5cb1
commit
693f5818be
@ -62,9 +62,7 @@ The inspector is used to see detailed information on objects of any type and man
|
|||||||
### Settings
|
### Settings
|
||||||
|
|
||||||
* You can change the settings via the "Options" tab of the menu, or directly from the config file.
|
* You can change the settings via the "Options" tab of the menu, or directly from the config file.
|
||||||
* BepInEx: `BepInEx\config\com.sinai.unityexplorer.cfg`
|
* <AssetsFolder>/sinai-dev-UnityExplorer~/config.cfg
|
||||||
* MelonLoader: `UserData\MelonPreferences.cfg`
|
|
||||||
* Standalone `{DLL_location}\UnityExplorer\config.cfg`
|
|
||||||
|
|
||||||
# Acknowledgments
|
# Acknowledgments
|
||||||
|
|
||||||
|
Binary file not shown.
@ -15,7 +15,7 @@ namespace UnityExplorer
|
|||||||
public static class ExplorerCore
|
public static class ExplorerCore
|
||||||
{
|
{
|
||||||
public const string NAME = "UnityExplorer";
|
public const string NAME = "UnityExplorer";
|
||||||
public const string VERSION = "4.7.0";
|
public const string VERSION = "4.7.1";
|
||||||
public const string AUTHOR = "Sinai";
|
public const string AUTHOR = "Sinai";
|
||||||
public const string GUID = "com.sinai.unityexplorer";
|
public const string GUID = "com.sinai.unityexplorer";
|
||||||
|
|
||||||
@ -74,8 +74,6 @@ namespace UnityExplorer
|
|||||||
// check master toggle
|
// check master toggle
|
||||||
if (InputManager.GetKeyDown(ConfigManager.Master_Toggle.Value))
|
if (InputManager.GetKeyDown(ConfigManager.Master_Toggle.Value))
|
||||||
UIManager.ShowMenu = !UIManager.ShowMenu;
|
UIManager.ShowMenu = !UIManager.ShowMenu;
|
||||||
|
|
||||||
UIManager.Update();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Can be removed eventually. For migration from <4.7.0
|
// Can be removed eventually. For migration from <4.7.0
|
||||||
|
Loading…
Reference in New Issue
Block a user