Skip to main content

Meta_Animation

Module: Metanodes / Definitions

An animation is a collection of keyframes and/or actions to apply to a target node. More...

#include <meta_importables.hpp>

Public Types

TypeName
enumAxis { AXIS_POSITIVE_X, AXIS_POSITIVE_Y, AXIS_POSITIVE_Z, AXIS_NEGATIVE_X, AXIS_NEGATIVE_Y, AXIS_NEGATIVE_Z }
Values for Idx_Axis.
enumAxisOrder { AXIS_ORDER_XYZ, AXIS_ORDER_YZX, AXIS_ORDER_ZXY, AXIS_ORDER_XZY, AXIS_ORDER_YXZ, AXIS_ORDER_ZYX }
Values for Idx_AxisOrder.
enumIDX { Idx_Interpolation, Idx_OrientTo, Idx_LookAtTarget, Idx_Axis, Idx_RotationMethod, Idx_AxisOrder }
Property index.
enumInterpolation { INTERPOLATION_CONSTANT, INTERPOLATION_LINEAR, INTERPOLATION_CATMULL_ROM }
Values for Idx_Interpolation.
enumOrientTo { ORIENT_TO_KEYFRAMES, ORIENT_TO_PATH, ORIENT_TO_TARGET, ORIENT_TO_PATH_PLUS_KEYFRAMES, ORIENT_TO_TARGET_PLUS_KEYFRAMES }
Values for Idx_OrientTo.
enumRotationMethod { ROTATION_METHOD_QUATERNION, ROTATION_METHOD_EULER_ANGLES }
Values for Idx_RotationMethod.

Detailed Description

struct Meta_Animation;

An animation is a collection of keyframes and/or actions to apply to a target node.

Valid child types: Meta_AnimationFramePRS, Meta_AnimationFrameBool, Meta_AnimationFrameInt, Meta_AnimationFrameFloat, Meta_AnimationFrameDouble, Meta_AnimationFrameWorldFloat, Meta_AnimationFrameString, Meta_AnimationFrameLink, Meta_AnimationAction

Public Types Documentation

enum Axis

EnumeratorValueDescription
AXIS_POSITIVE_XRotate the animation target about the positive x-axis (Symbols - C: "AxisPositiveX", Lua: __Animation_AxisPositiveX)
AXIS_POSITIVE_YRotate the animation target about the positive y-axis (Symbols - C: "AxisPositiveY", Lua: __Animation_AxisPositiveY)
AXIS_POSITIVE_ZRotate the animation target about the positive z-axis (Symbols - C: "AxisPositiveZ", Lua: __Animation_AxisPositiveZ)
AXIS_NEGATIVE_XRotate the animation target about the negative x-axis (Symbols - C: "AxisNegativeX", Lua: __Animation_AxisNegativeX)
AXIS_NEGATIVE_YRotate the animation target about the negative y-axis (Symbols - C: "AxisNegativeY", Lua: __Animation_AxisNegativeY)
AXIS_NEGATIVE_ZRotate the animation target about the negative z-axis (Symbols - C: "AxisNegativeZ", Lua: __Animation_AxisNegativeZ)

Values for Idx_Axis.

enum AxisOrder

EnumeratorValueDescription
AXIS_ORDER_XYZIn Euler angle mode apply X first, then Y, then Z (Symbols - C: "AxisOrderXYZ", Lua: __Animation_AxisOrderXYZ)
AXIS_ORDER_YZXIn Euler angle mode apply Y first, then Z, then X (Symbols - C: "AxisOrderYZX", Lua: __Animation_AxisOrderYZX)
AXIS_ORDER_ZXYIn Euler angle mode apply Z first, then X, then Y (Symbols - C: "AxisOrderZXY", Lua: __Animation_AxisOrderZXY)
AXIS_ORDER_XZYIn Euler angle mode apply X first, then Z, then Y (Symbols - C: "AxisOrderXZY", Lua: __Animation_AxisOrderXZY)
AXIS_ORDER_YXZIn Euler angle mode apply Y first, then X, then Z (Symbols - C: "AxisOrderYXZ", Lua: __Animation_AxisOrderYXZ)
AXIS_ORDER_ZYXIn Euler angle mode apply Z first, then Y, then X (Symbols - C: "AxisOrderZYX", Lua: __Animation_AxisOrderZYX)

Values for Idx_AxisOrder.

enum IDX

EnumeratorValueDescription
Idx_InterpolationInterpolation (int) - How to transform the animation target between keyframes
Idx_OrientToOrientTo (int) - How to rotate the animation target
Idx_LookAtTargetlink - A node with a transform to point the animation target at
Idx_AxisAxis (int) - The axis of rotation to use when orienting to a path or target
Idx_RotationMethod[RotationMethod (int) - Whether to apply keyframe rotations with quaternions or Euler angles
Idx_AxisOrderAxisOrder (int) - The order to apply Euler angles. This affects how the animation interpolates between keyframes

Property index.

enum Interpolation

EnumeratorValueDescription
INTERPOLATION_CONSTANTSnap to the transform in the previous keyframe (Symbols - C: "InterpolationConstant", Lua: __Animation_InterpolationConstant)
INTERPOLATION_LINEARInterpolate along a line between keyframes (Symbols - C: "InterpolationLinear", Lua: __Animation_InterpolationLinear)
INTERPOLATION_CATMULL_ROMInterpolate along a spline that passes through keyframes (Symbols - C: "InterpolationCatmullRom", Lua: __Animation_InterpolationCatmullRom)

Values for Idx_Interpolation.

enum OrientTo

EnumeratorValueDescription
ORIENT_TO_KEYFRAMESRotate the animation target using values stored in keyframes (Symbols - C: "OrientToKeyframes", Lua: __Animation_OrientToKeyframes)
ORIENT_TO_PATHDirect the animation target along the path that it's following (Symbols - C: "OrientToPath", Lua: __Animation_OrientToPath)
ORIENT_TO_TARGETDirect the animation target towards a specified node (Symbols - C: "OrientToTarget", Lua: __Animation_OrientToTarget)
ORIENT_TO_PATH_PLUS_KEYFRAMESDirect the animation target along the path that it's following and apply keyframe rotations too (Symbols - C: "OrientToPathPlusKeyframes", Lua: __Animation_OrientToPathPlusKeyframes)
ORIENT_TO_TARGET_PLUS_KEYFRAMESDirect the animation target towards a specified node and apply keyframe rotations too (Symbols - C: "OrientToTargetPlusKeyframes", Lua: __Animation_OrientToTargetPlusKeyframes)

Values for Idx_OrientTo.

enum RotationMethod

EnumeratorValueDescription
ROTATION_METHOD_QUATERNIONRepresent angles below 180 degrees without the concern of gimbal lock (Symbols - C: "RotationMethodQuaternion", Lua: __Animation_RotationMethodQuaternion)
ROTATION_METHOD_EULER_ANGLESRepresent angles above 180 degrees with the possibility of gimbal lock (Symbols - C: "RotationMethodEulerAngles", Lua: __Animation_RotationMethodEulerAngles)

Values for Idx_RotationMethod.