mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-06 13:15:45 -05:00
12 lines
323 B
C#
12 lines
323 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
/// <summary>
|
|
/// Receive LooAtEyeDirection, and Apply to bone transforms.
|
|
/// </summary>
|
|
internal interface ILookAtEyeDirectionApplicable
|
|
{
|
|
IEnumerable<KeyValuePair<ExpressionKey, float>> Apply(LookAtEyeDirection eyeDirection);
|
|
}
|
|
} |