Type Alias: Lineage
type Lineage = {
value: UUID[];
parentUUID: UUID;
ordinal: Int32;
};
Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:444
Records the entity's lineage through linkers and parentage.
Properties
value
readonly value: UUID[];
Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:448
UUID chain of linkers that produced this entity.
parentUUID
parentUUID: UUID;
Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:452
UUID of this entity's parent (default is root).
ordinal
ordinal: Int32;
Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:457
Ordinal index among siblings (editor-only).
Default Value
0;