Skip to main content

Meta_Assembly

Module: Metanodes / Definitions

An Assembly is the main node type in the scenegraph, used to build the transform hierarchy of the scene.

#include <meta_importables.hpp>

Public Types

TypeName
enumCONSTRAINT_TYPE { CONSTRAINT_NONE, CONSTRAINT_LOCK, CONSTRAINT_PARENT, CONSTRAINT_LIMIT, CONSTRAINT_IK, CONSTRAINT_LOOKAT }
Values for Idx_Constraint.
enumIDX { Idx_Enabled, Idx_Transform, Idx_Constraint, Idx_ShadowCaster, Idx_CollisionLayer, Idx_SnapEnabled, Idx_IgnoreCoverageLOD, Idx_IgnoreProbes }
Property index.
enumLAYERS { LAYER_INVALID = INT_MIN, LAYER_DEFAULT = 0 }
Values for Idx_CollisionLayer.

Public Types Documentation

enum CONSTRAINT_TYPE

EnumeratorValueDescription
CONSTRAINT_NONEdo not constrain the transform at all (Symbols - C: "ConstraintNone", Lua: __Assembly_ConstraintNone)
CONSTRAINT_LOCKdo not allow the transform to be changed (Symbols - C: "ConstraintLock", Lua: __Assembly_ConstraintLock)
CONSTRAINT_PARENTdefer a change to the transform to its parent (Symbols - C: "ConstraintParent", Lua: __Assembly_ConstraintParent)
CONSTRAINT_LIMITconstrain the transform parameters to the values in a child [Meta_TransformLimits node (Symbols - C: "ConstraintLimit", Lua: __Assembly_ConstraintLimit)
CONSTRAINT_IKReserved for future use.
CONSTRAINT_LOOKATkeep the node facing towards another node (Symbols - C: "ConstraintLookAt", Lua: __Assembly_ConstraintLookAt)

Values for Idx_Constraint.

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - If true, assembly is active and children should be traversed. Otherwise stop traversal here.
Idx_Transformmat4w - The local transformation matrix of this assembly.
Idx_ConstraintCONSTRAINT_TYPE (int) - Type of constraint to be enforced on this assemblies transform.
Idx_CollisionLayerLAYERS (int) - A signed integer representing the collision layer of this assembly. Higher values take priority over lower values. i.e. if multiple ray intersections are returned from the collision system, then the one associated with an assembly with the highest layer value will be used. INVALID_LAYER can be used to disable ray cast collisions.
Idx_SnapEnabledbool - If true, restore snap mode will be enabled on this assembly (regardless of global value).
Idx_IgnoreCoverageLODbool -If true, coverage LOD for this assembly and all its descendants is disabled.
Idx_IgnoreProbesbool - If true, the assembly and all its decendents will be ignored by any probes.

Property index.

enum LAYERS

EnumeratorValueDescription
LAYER_INVALIDINT_MINdo not perform hit test (Symbols - C: "LayerInvalid", Lua: __Assembly_LayerInvalid)
LAYER_DEFAULT0default hit test layer (evaluates to rex::OpaqueLayer in scene event node) (Symbols - C: "LayerDefault", Lua: __Assembly_LayerDefault)

Values for Idx_CollisionLayer.