fix movement parent ik

This commit is contained in:
NotAKidoS 2023-03-08 21:28:53 -06:00
parent 51ff6e8333
commit 81a84c125c
3 changed files with 105 additions and 43 deletions

View file

@ -46,6 +46,13 @@ class PlayerSetupPatches
{
return !(bool)DesktopVRIK.Instance?.OnSetupIKScaling(1f + ___scaleDifference.y);
}
[HarmonyPrefix]
[HarmonyPatch(typeof(PlayerSetup), "ResetIk")]
static bool Prefix_PlayerSetup_ResetIk()
{
return !(bool)DesktopVRIK.Instance?.OnPlayerSetupResetIk();
}
}
class IKSystemPatches