mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
[NAK_CVR_Mods] Change every instance of "NotAKidOnSteam" to "NotAKidoS"
This commit is contained in:
parent
a6c030955e
commit
7f02d6811f
159 changed files with 711 additions and 294 deletions
17
InteractionTest/Patches.cs
Normal file
17
InteractionTest/Patches.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
|
||||
using ABI_RC.Core;
|
||||
using ABI_RC.Core.InteractionSystem;
|
||||
using HarmonyLib;
|
||||
using NAK.InteractionTest.Components;
|
||||
|
||||
namespace NAK.InteractionTest.Patches;
|
||||
|
||||
internal static class ControllerRayPatches
|
||||
{
|
||||
[HarmonyPostfix]
|
||||
[HarmonyPatch(typeof(ControllerRay), nameof(ControllerRay.Start))]
|
||||
private static void Postfix_BetterCharacterController_Start(ref ControllerRay __instance)
|
||||
{
|
||||
InteractionTracker.Setup(__instance.gameObject, __instance.hand == CVRHand.Left);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue