World Transform as Core component for everything to buils custom TransformSystems

Hi

DreamingImLatios have feedback v2 and there it mention his transform system that require only one main component to use for most outer ssystems

    // World space transform for all entities. Is also local space for root entities. It is always present, and is the only required transform component for rendering.
    public struct WorldTransform : IComponentData
    {
        public TransformQvvs worldTransform;
    }

https://github.com/Dreaming381/lsss-wip/blob/master/Packages/com.latios.latios-framework/Transforms/TransformComponents.cs

What plans Do Unity have about transform system and do you have plans to create such simple one component interface for communicating world transform of Entity so others can build custom systems on it?

Current Transform system has too many components and have too big memory consumption on entity do you have plans to optimize this like DreamingImLatios does**?**

1 Like

Hi! We don’t currently have plans to significantly revisit the Transform V2 components but I’m a big fan of DreamingImLatios’s work and have been reading his feedback carefully.

3 Likes