Skip to main content

Meta_Sequence

Module: Metanodes / Definitions

A sequence is a collection of tracks that animate target nodes Valid child types: Meta_AssemblyTrack, Meta_PropertyTrack, Meta_SequenceTrack.

#include <meta_importables.hpp>

Public Types

TypeName
enumIDX { Idx_Enabled, Idx_Position, Idx_Length, Idx_PlayMode, Idx_PlayCount, Idx_PlaySpeed, Idx_FixedPlaySpeed, Idx_PlayUser, Idx_InitialState, Idx_InitialPosition, Idx_DisableSceneVisuals, Idx_DisableActions, Idx_Looped, Idx_LoopStart, Idx_LoopEnd }
Property index.
enumInitialState { STATE_PAUSE, STATE_PLAY_FORWARDS, STATE_PLAY_BACKWARDS }
Values for Idx_InitialState.
enumPlayMode { PLAY_FORWARDS, PLAY_BACKWARDS }
Values for Idx_PlayMode.

Public Types Documentation

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - If true, the animation actor will timestep this sequence's Idx_Position each frame until it reaches Idx_Length, at which point the sequence will be looped or disabled
Idx_Positionfloat - The current time in seconds that the sequence is set to
Idx_Lengthfloat - The length of the sequence in seconds (as calculated by the animation actor)
Idx_PlayModePlayMode (int) - Whether to play the sequence forwards or backwards when it is enabled
Idx_PlayCountint - The number of times to play the sequence (or part of it, as defined by Idx_LoopStart and Idx_LoopEnd). If < 0, the sequence will loop forever
Idx_PlaySpeedfloat - Playback rate (0.5 = half speed, 2.0 = double speed, etc.)
Idx_FixedPlaySpeedbool - If true, this sequence will ignore the global play speed setting
Idx_PlayUserlink - The last user to interact with this sequence. This is used when collaborating to make camera tracks affect the user who triggered the sequence
Idx_InitialStateInitialState (int) - The state of the sequence when the scene is loaded
Idx_InitialPositionfloat - The start time in seconds of the sequence when the scene is loaded
Idx_DisableSceneVisualsbool - If true, don't draw visuals in the 3D scene for this sequence. This can improve performance in sequences with lots of keyframes (such as mocap data)
Idx_DisableActionsbool - If true, ignore any action frames in this sequence. This can improve performance slightly in sequences without action frames
Idx_Loopedbool - If true, the sequence just looped around at the previous timestep. This value will be reset at the next timestep, and can be queried to prevent actions from being executed whilst looping, etc.
Idx_LoopStartfloat - The start time in seconds of the looped part of the sequence
Idx_LoopEndfloat - The end time in seconds of the looped part of the sequence. If zero, loop the whole sequence

Property index.

enum InitialState

EnumeratorValueDescription
STATE_PAUSESequence is paused when initially loaded from file (Symbols - C: "StatePause", Lua: __Sequence_StatePause)
STATE_PLAY_FORWARDSSequence is playing fowards when initially loaded from file (Symbols - C: "StatePlayForwards", Lua: __Sequence_StatePlayForwards)
STATE_PLAY_BACKWARDSSequence is playing backwards when initially loaded from file (Symbols - C: "StatePlayBackwards", Lua: __Sequence_StatePlayBackwards)

Values for Idx_InitialState.

enum PlayMode

EnumeratorValueDescription
PLAY_FORWARDSSequence plays forwards when enabled (Symbols - C: "PlayForwards", Lua: __Sequence_PlayForwards)
PLAY_BACKWARDSSequence plays backwards when enabled (Symbols - C: "PlayBackwards", Lua: __Sequence_PlayBackwards)

Values for Idx_PlayMode.