mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-14 14:29:52 -05:00
13 lines
286 B
C#
13 lines
286 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public interface INormalizedPoseApplicable
|
|
{
|
|
void SetRawHipsPosition(Vector3 position);
|
|
|
|
void SetNormalizedLocalRotation(HumanBodyBones bone, Quaternion normalizedLocalRotation);
|
|
}
|
|
}
|