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;
}
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**?**