push what i have

This commit is contained in:
NotAKidoS 2023-07-26 08:27:28 -05:00
parent dc2916e8e6
commit d77afcc009
16 changed files with 496 additions and 91 deletions

View file

@ -0,0 +1,9 @@
using RootMotion.FinalIK;
namespace NAK.AlternateIKSystem.IK.WeightManipulators.Interface;
public interface IWeightManipulator
{
WeightManipulatorManager Manager { get; set; }
void Update(IKSolverVR solver);
}