diff --git a/TwoForksVR/Debug/Patches/DebugPatches.cs b/TwoForksVR/Debug/Patches/DebugPatches.cs deleted file mode 100644 index d699bb2f..00000000 --- a/TwoForksVR/Debug/Patches/DebugPatches.cs +++ /dev/null @@ -1,17 +0,0 @@ -using HarmonyLib; -using UnityExplorer.UI; - -namespace TwoForksVR.Debug.Patches -{ - [HarmonyPatch(typeof(UIManager), "InitUI")] - public class HideUnityExplorerOnStartup - { - // I couldn't get the BepInEx version of UnityExplorer to work. - // So I'm using the standalone version, but that one was resetting the settings on startup. - // So I'm patching the setting here, since without this I can't use the game menus in VR. - public static void Postfix() - { - UIManager.ShowMenu = false; - } - } -} \ No newline at end of file