mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-07-23 10:41:26 -05:00
11 lines
138 B
C#
11 lines
138 B
C#
using UnityEngine;
|
|
|
|
|
|
namespace UniHumanoid
|
|
{
|
|
public interface IPoseModifier
|
|
{
|
|
void Modify(ref HumanPose pose);
|
|
}
|
|
}
|