Skip to content

Api > AnimationState > AddMixingTransform()


AnimationState.AddMixingTransform(Transform mix, boolean recursive = true)⚓︎

Adds a transform which should be animated. This allows you to reduce the number of animations you have to create.

Parameters:⚓︎

Name Type Description
mix Transform The transform to animate.
recursive boolean Whether to also animate all children of the specified transform.

Usage⚓︎

---@type AnimationState
local animationstate;

---@type Transform
local mix;

---@type boolean
local recursive;


animationstate.AddMixingTransform(mix, recursive)

Extra Detail⚓︎

For example you might have a handwaving animation. You might want to play the hand waving animation on a idle character or on a walking character. Either you have to create 2 hand waving animations one for idle, one for walking. By using mixing the hand waving animation will have full control of the shoulder. But the lower body will not be affected by it, and continue playing the idle or walk animation. Thus you only need one hand waving animation.

If recursive is true all children of the mix transform will also be animated. If you don't call AddMixingTransform, all animation curves will be used.