[NAK_CVR_Mods] Change every instance of "NotAKidOnSteam" to "NotAKidoS"

This commit is contained in:
NotAKidoS 2024-06-27 21:24:41 -05:00
parent a6c030955e
commit 7f02d6811f
159 changed files with 711 additions and 294 deletions

View 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);
}
}