NAK_CVR_Mods/AlternateIKSystem/IK/WeightManipulators/Interface/IWeightManipulator.cs
2023-07-26 08:27:28 -05:00

9 lines
No EOL
222 B
C#

using RootMotion.FinalIK;
namespace NAK.AlternateIKSystem.IK.WeightManipulators.Interface;
public interface IWeightManipulator
{
WeightManipulatorManager Manager { get; set; }
void Update(IKSolverVR solver);
}