QLerpClipBlend

PyQt5.Qt3DAnimation.QLerpClipBlend

Inherits from QAbstractClipBlendNode.

Description

Performs a linear interpolation of two animation clips based on a normalized factor.

QLerpClipBlend can be useful to create advanced animation effects based on individual animation clips. For instance, given a player character, lerp blending could be used to combine a walking animation clip with an injured animation clip based on a blend factor that increases the more the player gets injured. This would then allow with blend factor == 0 to have a non injured walking player, with blend factor == 1 a fully injured player, with blend factor == 0.5 a partially walking and injured player.

See also

QBlendedClipAnimator.

Methods

__init__(parent: QNode = None)

TODO


blendFactor() → float

See also

setBlendFactor().


endClip() → QAbstractClipBlendNode

See also

setEndClip().


setBlendFactor(float)

See also

blendFactor().


setEndClip(QAbstractClipBlendNode)

See also

endClip().


setStartClip(QAbstractClipBlendNode)

See also

startClip().


startClip() → QAbstractClipBlendNode

See also

setStartClip().

Signals

blendFactorChanged(float)

TODO


endClipChanged(QAbstractClipBlendNode)

TODO


startClipChanged(QAbstractClipBlendNode)

TODO