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