using System.Collections; using System.Collections.Generic; using UnityEngine; public struct TRS { public Vector3 position; public Quaternion rotation; public Vector3 scale; public TRS(Vector3 pos, Quaternion rot, Vector3 sc) { position = pos; rotation = rot; scale = sc; } }