Skip to content

Api > AnimationState > RemoveMixingTransform()


AnimationState.RemoveMixingTransform(Transform mix)⚓︎

Removes a transform which should be animated.

Parameters:⚓︎

Name Type Description
mix Transform Transform 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.