mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-06 13:15:45 -05:00
18 lines
498 B
C#
18 lines
498 B
C#
namespace UniVRM10
|
|
{
|
|
public readonly struct LookAtEyeDirection
|
|
{
|
|
public float LeftYaw { get; }
|
|
public float LeftPitch { get; }
|
|
public float RightYaw { get; }
|
|
public float RightPitch { get; }
|
|
|
|
public LookAtEyeDirection(float leftYaw, float leftPitch, float rightYaw, float rightPitch)
|
|
{
|
|
LeftYaw = leftYaw;
|
|
LeftPitch = leftPitch;
|
|
RightYaw = rightYaw;
|
|
RightPitch = rightPitch;
|
|
}
|
|
}
|
|
} |