mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-19 21:47:46 -05:00
18 lines
331 B
C#
18 lines
331 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
[Serializable]
|
|
public struct VRM10RotationOffset
|
|
{
|
|
[SerializeField]
|
|
public Quaternion Rotation;
|
|
|
|
public static VRM10RotationOffset Identity => new VRM10RotationOffset
|
|
{
|
|
Rotation = Quaternion.identity,
|
|
};
|
|
}
|
|
}
|