mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-14 06:19:47 -05:00
13 lines
329 B
C#
13 lines
329 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public interface IVrm10Animation : IDisposable
|
|
{
|
|
(INormalizedPoseProvider, ITPoseProvider) ControlRig { get; }
|
|
IReadOnlyDictionary<ExpressionKey, Func<float>> ExpressionMap { get; }
|
|
public void ShowBoxMan(bool enable);
|
|
}
|
|
}
|