Skip to main content

AnimationState.RemoveMixingTransform(Transform mix)

Removes a transform which should be animated.

Parameters:

NameTypeDescription
mixTransformTransform mix to remove.

Usage

---@type AnimationState
local animationstate;

---@type Transform
local mix;


animationstate.RemoveMixingTransform(mix)

Extra Detail

You can only pass transforms that have been added through AddMixingTransform function. If transform has been added as recursive, then it will be removed as recursive. Once you remove all mixing transforms added to animation state all curves become animated again.