powerfun-unity/Assets/AR/ARVideoTransform.cs

14 lines
258 B
C#
Raw Permalink Normal View History

2022-11-29 16:29:59 +08:00
using UnityEngine;
namespace Assets.AR
{
2023-01-31 18:22:15 +08:00
public class ARVideoTransform
2022-11-29 16:29:59 +08:00
{
public int Frame;
public float Distance;
public Vector3 PositionOffset;
public Vector3 RotationOffset;
public Vector3 Scale;
}
}