mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-03 11:46:02 -05:00
* Assets/UniHumanoid/Scripts => Assets/UniGLTF/Runtime/Humanoid * Assets/UniHumanoid/Editor => Assets/UniGLTF/Editor/Humanoid * Assets/UniHumanoid/Editor/Tests => Assets/UniGLTF/Tests/Humanoid * => docs/unihumanoid/index.md
11 lines
138 B
C#
11 lines
138 B
C#
using UnityEngine;
|
|
|
|
|
|
namespace UniHumanoid
|
|
{
|
|
public interface IPoseModifier
|
|
{
|
|
void Modify(ref HumanPose pose);
|
|
}
|
|
}
|