[IKFixes] Fix chest offset.

This commit is contained in:
NotAKidoS 2023-10-03 20:26:43 -05:00
parent 92bbd72338
commit 609afc37fc
2 changed files with 5 additions and 1 deletions

View file

@ -34,6 +34,10 @@ internal static class BodySystemPatches
parent = IKSystem.vrik.references.rightCalf;
offsetDistance = 0.15f;
break;
case TrackingPoint.TrackingRole.Chest:
parent = IKSystem.vrik.references.chest;
offsetDistance = 0.5f;
break;
case TrackingPoint.TrackingRole.LeftElbow:
parent = IKSystem.vrik.references.leftForearm;
offsetDistance = -0.15f;

View file

@ -25,6 +25,6 @@ using System.Reflection;
namespace NAK.IKFixes.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.9";
public const string Version = "1.1.0";
public const string Author = "NotAKidoS";
}