fixed hair anchors

todo: fix HAR head addon anchors
This commit is contained in:
c0ffee 2021-07-22 16:04:21 -07:00
parent f8d3f3c63b
commit d6ddf0e6d0
7 changed files with 117 additions and 31 deletions

View file

@ -0,0 +1,22 @@
using HarmonyLib;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using RimWorld;
using UnityEngine;
namespace Rimworld_Animations
{
[HarmonyPatch(typeof(PawnRenderer), "DrawHeadHair")]
public static class HarmonyPatch_HeadHair
{
public static void Prefix(ref Vector3 headOffset, ref float angle)
{
}
}
}