using System; using Unity.Entities; using Unity.Mathematics; namespace Unity.Transforms { /// /// If Attached, in local space (relative to parent) /// If not Attached, in world space. /// [Serializable] public struct Position : IComponentData { public float3 Value; } public class PositionComponent : ComponentDataWrapper { } }