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

Commit 2d414e5

Browse files
committed
Update README.md
1 parent 513fcaa commit 2d414e5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ There is a simple Mod Config for the Explorer. You can access the settings via t
8282

8383
## Mouse Control
8484

85-
Explorer can force the mouse to be visible and unlocked when the menu is open, if you have enabled "Force Unlock Mouse" (Left-Alt toggle). However, you may also want to prevent the mouse clicking-through onto the game behind Explorer, this is possible but it requires specific patches for that game.
85+
Explorer can force the mouse to be visible and unlocked when the menu is open, if you have enabled "Force Unlock Mouse" (Left-Alt toggle). Explorer also attempts to prevent clicking-through onto the game behind the Explorer menu.
86+
87+
If you need more mouse control:
8688

8789
* For VRChat, use [VRCExplorerMouseControl](https://github.com/sinai-dev/VRCExplorerMouseControl)
8890
* For Hellpoint, use [HPExplorerMouseControl](https://github.com/sinai-dev/Hellpoint-Mods/tree/master/HPExplorerMouseControl/HPExplorerMouseControl)
@@ -93,8 +95,9 @@ For example:
9395
using Explorer;
9496
using Harmony; // or 'using HarmonyLib;' for BepInEx
9597
// ...
96-
[HarmonyPatch(typeof(MyGame.MenuClass), nameof(MyGame.MenuClass.CursorUpdate)]
97-
public class MenuClass_CursorUpdate
98+
// You will need to figure out the relevant Class and Method for your game using dnSpy.
99+
[HarmonyPatch(typeof(MyGame.InputManager), nameof(MyGame.InputManager.Update)]
100+
public class InputManager_Update
98101
{
99102
[HarmonyPrefix]
100103
public static bool Prefix()

0 commit comments

Comments
 (0)