AnimationNodeBlendSpace2D.BlendMode/blendMode - multiple declarations
Function AnimationNodeBlendSpace2D.blendMode
Controls the interpolation between animations. See blendmode
constants.
AnimationNodeBlendSpace2D . BlendMode blendMode() nothrow @property @nogc;
void blendMode
(
long v
) nothrow @property @nogc;
Enum AnimationNodeBlendSpace2D.BlendMode
enum BlendMode
: int { ... }
Enum members
Name | Description |
---|---|
blendModeDiscrete
|
The blend space plays the animation of the node the blending position is closest to. Useful for frame-by-frame 2D animations. |
blendModeDiscreteCarry
|
Similar to constant BLEND_MODE_DISCRETE , but starts the new animation at the last animation's playback position.
|
blendModeInterpolated
|
The interpolation between animations is linear. |