mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-13 22:09:53 -05:00
18 lines
416 B
C#
18 lines
416 B
C#
using UnityEngine;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public interface INormalizedPoseProvider
|
|
{
|
|
/// <summary>
|
|
/// Get hips position in model root space
|
|
/// </summary>
|
|
Vector3 GetRawHipsPosition();
|
|
|
|
/// <summary>
|
|
/// Get normalized local rotation
|
|
/// </summary>
|
|
Quaternion GetNormalizedLocalRotation(HumanBodyBones bone, HumanBodyBones parentBone);
|
|
}
|
|
}
|