2025-06-08 00:39:11 +09:00

11 lines
138 B
C#

using UnityEngine;
namespace UniHumanoid
{
public interface IPoseModifier
{
void Modify(ref HumanPose pose);
}
}