Type Alias: LabelPointOfView
type LabelPointOfView = {
entity: Entity;
title: string;
position: Vec3;
orientation: Quat;
};
Defined in: livelink.react/sources/hooks/useLabelPointsOfView.ts:12
A point of view extracted from a label component.
Properties
entity
entity: Entity;
Defined in: livelink.react/sources/hooks/useLabelPointsOfView.ts:16
The entity carrying the label component.
title
title: string;
Defined in: livelink.react/sources/hooks/useLabelPointsOfView.ts:21
The label's title.
position
position: Vec3;
Defined in: livelink.react/sources/hooks/useLabelPointsOfView.ts:26
The camera position stored on the label.
orientation
orientation: Quat;
Defined in: livelink.react/sources/hooks/useLabelPointsOfView.ts:31
The camera orientation stored on the label.