Skip to main content

Type Alias: MappedEntity

type MappedEntity = {
entity_uuid: UUID;
linkage?: UUID[];
};

Defined in: livelink.clients/livelink.agent/sources/data/resolvers/ExistingEntityResolver.ts:18

One entry of an EntityMap: the UUID of the entity an id drives, either bare or paired with the linkage to find it under (the chain of scene references leading to it, empty for an entity of the scene itself). A bare UUID takes the linkage declared alongside the map.

Properties

entity_uuid

entity_uuid: UUID;

Defined in: livelink.clients/livelink.agent/sources/data/resolvers/ExistingEntityResolver.ts:22

The UUID of the existing entity the id drives.


linkage?

optional linkage?: UUID[];

Defined in: livelink.clients/livelink.agent/sources/data/resolvers/ExistingEntityResolver.ts:28

The linkage to find this entity under. Overrides the linkage declared alongside the map when defined.