Added HipMovement Weight & Fixed Emote avatar position

This commit is contained in:
NotAKidoS 2023-01-10 20:20:50 -06:00
parent 3f7d4335ad
commit 04de34d5d3
4 changed files with 23 additions and 9 deletions

View file

@ -78,6 +78,8 @@ internal class HarmonyPatches
{
___lookIK.enabled = false;
}
IKSystem.vrik.transform.localPosition = Vector3.zero;
IKSystem.vrik.transform.localRotation = Quaternion.identity;
}
else if (!____emotePlaying && emotePlayed)
{
@ -88,6 +90,8 @@ internal class HarmonyPatches
{
___lookIK.enabled = true;
}
IKSystem.vrik.transform.localPosition = Vector3.zero;
IKSystem.vrik.transform.localRotation = Quaternion.identity;
}
}