Controls how a timeline value is mixed with the setup pose value or current pose value when a timeline's alpha < 1.

See also:

Variables

@:value(cast 3)@:enum@:implinlineread onlyadd:MixBlend = 3

Transitions from the current value to the current value plus the timeline value. No change is made before the first key (the current value is kept until the first key).

add is intended for animations layered on top of others, not for the first animations applied. Properties keyed by additive animations must be set manually or by another animation before applying the additive animations, else the property values will increase continually.

@:value(cast 1)@:enum@:implinlineread onlyfirst:MixBlend = 1

Transitions from the current value to the timeline value. Before the first key, transitions from the current value to the setup value. Timelines which perform instant transitions, such as DrawOrderTimeline or AttachmentTimeline, use the setup value before the first key.

first is intended for the first animations applied, not for animations layered on top of those.

@:value(cast 2)@:enum@:implinlineread onlyreplace:MixBlend = 2

Transitions from the current value to the timeline value. No change is made before the first key (the current value is kept until the first key).

replace is intended for animations layered on top of others, not for the first animations applied.

@:value(cast 0)@:enum@:implinlineread onlysetup:MixBlend = 0

Transitions from the setup value to the timeline value (the current value is not used). Before the first key, the setup value is set.