Skip to main content

Meta_TransformLink

Module: Metanodes / Definitions

A TransformLink synchronises the transform of the source node onto the target node (and optionally the other way) More...

#include <meta_tracking.hpp>

Public Types

TypeName
enumIdx { Idx_Enabled, Idx_Source, Idx_Target, Idx_OverrideMode, Idx_PositionOverride, Idx_RotationOverride, Idx_ScaleOverride, Idx_TwoWay, Idx_UpdateOrder, Idx_LocalTransforms }
Property index.
enumOverrideMode { Override_None = 0, Override_P = 1, Override_R = 2, Override_PR = 3, Override_S = 4, Override_PS = 5, Override_RS = 6, Override_PRS = 7 }
Values for Idx_OverrideMode.

Detailed Description

struct Meta_TransformLink;

A TransformLink synchronises the transform of the source node onto the target node (and optionally the other way)

This is usually used to connect assemblies from the scene to some part of the view or avatar.

Public Types Documentation

enum Idx

EnumeratorValueDescription
Idx_Enabledbool - When enabled, the link is active
Idx_Sourcelink - The source node, whose transform will be applied to the target
Idx_Targetlink - The target node, which receives the transform
Idx_OverrideModeOverrideMode (int) - Which parts of the transform are overridden
Idx_PositionOverridevec3w - The position value to apply instead of the source position
Idx_RotationOverridevec3w - The rotation value to apply instead of the source rotation
Idx_ScaleOverridevec3w - The scale value to apply instead of the source scale
Idx_TwoWaybool - Whether the link goes both ways (movement of Target affects Source)
Idx_UpdateOrderint - Determines the order in which all TransformLinks are updated. A lower number means this transform link is applied before any with higher numbers.
Idx_LocalTransformsbool - Whether the transform link applies its transforms to the world position or its local position

Property index.

enum OverrideMode

EnumeratorValueDescription
Override_None0Don't override any part of the transform (Symbols - C: "OverrideNone", Lua: __TransformLink_OverrideNone)
Override_P1Override the position (Symbols - C: "OverridePosition", Lua: __TransformLink_OverridePosition)
Override_R2Override the rotation (Symbols - C: "OverrideRotation", Lua: __TransformLink_OverrideRotation)
Override_PR3Override the position and rotation (Symbols - C: "OverridePositionRotation", Lua: __TransformLink_OverridePositionRotation)
Override_S4Override the scale (Symbols - C: "OverrideScale", Lua: __TransformLink_OverrideScale)
Override_PS5Override the position and scale (Symbols - C: "OverridePositionScale", Lua: __TransformLink_OverridePositionScale)
Override_RS6Override the rotation and scale (Symbols - C: "OverrideRotationScale", Lua: __TransformLink_OverrideRotationScale)
Override_PRS7Override the position, rotation, and scale (Symbols - C: "OverridePositionRotationScale", Lua: __TransformLink_OverridePositionRotationScale)

Values for Idx_OverrideMode.