mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-03 06:49:22 +00:00
[FuckMLA] Initial testing
New mod that unlocks the cursor by default when launching in VR.
This commit is contained in:
parent
fae729dd54
commit
69cb3b7804
6 changed files with 140 additions and 6 deletions
26
FuckMLA/Main.cs
Normal file
26
FuckMLA/Main.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
using MelonLoader;
|
||||
|
||||
namespace NAK.FuckMLA;
|
||||
|
||||
public class FuckMLA : MelonMod
|
||||
{
|
||||
public override void OnInitializeMelon()
|
||||
{
|
||||
ApplyPatches(typeof(HarmonyPatches.RootLogicPatches));
|
||||
ApplyPatches(typeof(HarmonyPatches.CVRInputModulePatches));
|
||||
ApplyPatches(typeof(HarmonyPatches.MOUSELOCKALPHAPatches));
|
||||
}
|
||||
|
||||
private void ApplyPatches(Type type)
|
||||
{
|
||||
try
|
||||
{
|
||||
HarmonyInstance.PatchAll(type);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
LoggerInstance.Msg($"Failed while patching {type.Name}!");
|
||||
LoggerInstance.Error(e);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue