Files
XRLib/Assets/Scripts/Simulator/CameraEntity.cs
2026-02-03 11:40:26 +09:00

15 lines
272 B
C#

using System;
namespace Simulator.CameraData
{
[Serializable]
public class CameraEntity
{
public float posX;
public float posY;
public float posZ;
public float rotX;
public float rotY;
public float rotZ;
}
}