UniVRM/Assets/VRM10_Samples/VRM10Viewer/Motions/IMotion.cs
2023-06-14 16:23:54 +09:00

15 lines
336 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
namespace UniVRM10.VRM10Viewer
{
public interface IMotion : IDisposable
{
(INormalizedPoseProvider, ITPoseProvider) ControlRig { get; }
IDictionary<ExpressionKey, Transform> ExpressionMap { get; }
void ShowBoxMan(bool enable);
}
}