Files
Simulation/Assets/Scripts/Data/CameraEntity.cs

16 lines
280 B
C#
Raw Normal View History

2025-07-15 18:07:24 +09:00
using System;
2025-07-18 11:35:21 +09:00
namespace Octopus.Simulator.Camera
2025-07-15 18:07:24 +09:00
{
[Serializable]
public class CameraEntity
{
2025-07-16 10:45:35 +09:00
public float posX;
public float posY;
public float posZ;
public float rotX;
public float rotY;
public float rotZ;
2025-07-15 18:07:24 +09:00
}
}