13 lines
352 B
C#
13 lines
352 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
/// <summary>
|
|
/// Receive LooAtEyeDirection, and Apply to bone transforms.
|
|
/// </summary>
|
|
internal interface ILookAtEyeDirectionApplicable
|
|
{
|
|
void Apply(LookAtEyeDirection eyeDirection, Dictionary<ExpressionKey, float> actualWeights);
|
|
void Restore();
|
|
}
|
|
} |