DataEntity.children.md
March 15, 2024 ยท View on GitHub
Friflo.Engine.ECS
Friflo.Engine.ECS.Serialize.DataEntity
DataEntity.children Field
The list of child entity ids.
public List<long> children;
Field Value
System.Collections.Generic.List<System.Int64>
Remarks
Used a list of child ids instead of a single field parentId to enable child order.
An alternative order implementation - using firstChild, nextSibling - is error prone if referenced nodes are missing.
For now the child order is required to enable a memorable order in the editor and to avoid merge conflicts.