- class QLerpClipBlend¶
Performs a linear interpolation of two animation clips based on a normalized factor. More…
Synopsis¶
Properties¶
Methods¶
def
__init__()
def
blendFactor()
def
endClip()
def
startClip()
Slots¶
def
setBlendFactor()
def
setEndClip()
def
setStartClip()
Signals¶
def
endClipChanged()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
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
Note
Properties can be used directly when
from __feature__ import true_property
is used or via accessor functions otherwise.- property blendFactorᅟ: float¶
Specifies the blending factor between 0 and 1 to control the blending of two animation clips.
- Access functions:
- property endClipᅟ: QAbstractClipBlendNode¶
Holds the sub-tree that should be used as the start clip for this lerp blend node. That is, the clip returned by this blend node when the
blendFactor
is set to a value of 1.- Access functions:
- property startClipᅟ: QAbstractClipBlendNode¶
Holds the sub-tree that should be used as the start clip for this lerp blend node. That is, the clip returned by this blend node when the
blendFactor
is set to a value of 0.- Access functions:
- __init__([parent=None])¶
- Parameters:
parent –
QNode
- blendFactor()¶
- Return type:
float
See also
setBlendFactor()
Getter of property
blendFactorᅟ
.- blendFactorChanged(blendFactor)¶
- Parameters:
blendFactor – float
Notification signal of property
blendFactorᅟ
.- endClip()¶
- Return type:
QAbstractClipBlendNode
See also
setEndClip()
Getter of property
endClipᅟ
.- endClipChanged(endClip)¶
- Parameters:
endClip –
QAbstractClipBlendNode
Notification signal of property
endClipᅟ
.- setBlendFactor(blendFactor)¶
- Parameters:
blendFactor – float
See also
blendFactor()
Setter of property
blendFactorᅟ
.- setEndClip(endClip)¶
- Parameters:
endClip –
QAbstractClipBlendNode
See also
endClip()
Setter of property
endClipᅟ
.- setStartClip(startClip)¶
- Parameters:
startClip –
QAbstractClipBlendNode
See also
startClip()
Setter of property
startClipᅟ
.- startClip()¶
- Return type:
QAbstractClipBlendNode
See also
setStartClip()
Getter of property
startClipᅟ
.- startClipChanged(startClip)¶
- Parameters:
startClip –
QAbstractClipBlendNode
Notification signal of property
startClipᅟ
.