mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-19 09:21:48 -05:00
15 lines
336 B
C#
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);
|
|
}
|
|
}
|