This command creates a blendShape deformer, which blends in specified amounts of each target shape to the initial base shape. Each base shape is deformed by its own set of target shapes. Every target shape has an index that associates it with one of the shape weight values.In the create mode the first item on the selection list is treated as the base and the remaining inputs as targets. If the first item on the list has multiple shapes grouped beneath it, the targets must have an identical shape hierarchy. Additional base shapes can be added in edit mode using the deformers -g flag.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
after (af) | bool | ||
If the default behavior for insertion/appending into/onto the existing chain is not what you want then you can use this flag to force the command to stick the deformer node after the selected node in the chain even if a new geometry shape has to be created in order to do so. Works in create mode (and edit mode if the deformer has no geometry added yet). |
|||
afterReference (ar) | bool | ||
The -afterReference flag is used to specify deformer ordering in a hybrid way that choses between -before and -after automatically. If the geometry being deformed is referenced then -after mode is used in adding the new deformer otherwise -before mode is used. The net effect when using -afterReference to build deformer chains is that internal shape nodes in the deformer chain will only appear at reference file boundaries, leading to lightweight deformer networks that may be more amicable to reference swapping. |
|||
before (bf) | bool | ||
If the default behavior for insertion/appending into/onto the existing chain is not what you want then you can use this flag to force the command to stick the deformer node before the selected node in the chain even if a new geometry shape has to be created in order to do so. Works in create mode (and edit mode if the deformer has no geometry added yet). |
|||
deformerTools (dt) | bool | ||
|
|||
envelope (en) | float | ||
|
|||
exclusive (ex) | unicode | ||
|
|||
frontOfChain (foc) | bool | ||
This command is used to specify that the new deformer node should be placed ahead (upstream) of existing deformer and skin nodes in the shape’s history (but not ahead of existing tweak nodes). The input to the deformer will be the upstream shape rather than the visible downstream shape, so the behavior of this flag is the most intuitive if the downstream deformers are in their reset (hasNoEffect) position when the new deformer is added. Works in create mode (and edit mode if the deformer has no geometry added yet). |
|||
geometry (g) | unicode | ||
The specified object will be added to the list of objects being deformed by this deformer object, unless the -rm flag is also specified. When queried, this flag returns string string string ... |
|||
geometryIndices (gi) | bool | ||
|
|||
ignoreSelected (ignoreSelected) | bool | ||
|
|||
inBetween (ib) | bool | ||
Indicate that the specified target should serve as an inbetween. An inbetween target is one that serves as an intermediate target between the base shape and another target. |
|||
name (n) | unicode | ||
|
|||
normalizationGroups (ng) | bool | ||
|
|||
origin (o) | unicode | ||
blendShape will be performed with respect to the world by default. Valid values are “world” and “local”. The local flag will cause the blend shape to be performed with respect to the shape’s local origin. |
|||
parallel (par) | bool | ||
Inserts the new deformer in a parallel chain to any existing deformers in the history of the object. A blendShape is inserted to blend the parallel results together. Works in create mode (and edit mode if the deformer has no geometry added yet). |
|||
prune (pr) | bool | ||
|
|||
remove (rm) | bool | ||
|
|||
split (sp) | bool | ||
Branches off a new chain in the dependency graph instead of inserting/appending the deformer into/onto an existing chain. Works in create mode (and edit mode if the deformer has no geometry added yet). |
|||
target (t) | unicode, int, unicode, float | ||
Set target object as the index target shape for the base shape base object. The full influence of target shape takes effect when its shape weight is targetValue.Parameter list: string: the base objectint: indexstring: the target objectdouble: target value |
|||
topologyCheck (tc) | bool | ||
|
|||
weight (w) | int, float | ||
|
|||
weightCount (wc) | int | ||
|
Derived from mel command maya.cmds.blendShape
Example:
import pymel.core as pm
import maya.cmds as cmds
#
# Perform a blendShape using the currently-selected objects.
# The lead (last-selected) object will be the base shape, and each
# of the others become targets.
#
pm.blendShape()
#
# Create a blendShape that starts with curve3 as the base, and blends
# in curve1 and curve2 as targets.
pm.blendShape( 'curve1', 'curve2', 'curve3' )
#
# Apply 80% of the total blendShape deformation, by setting
# the envelope parameter to 0.8
pm.blendShape( 'blendShape1', edit=True, en=0.8 )
#
# Set the weights for the first two target shapes to 0.6
# and 0.1 respecxtively
pm.blendShape( 'blendShape1', edit=True, w=[(0, 0.6), (1, 0.1)] )
#
# Add a third target (target3) to the blendShape on curve3
pm.blendShape( 'blendShape1', edit=True, t=('curve3', 1, 'target3', 1.0) )
#
# Add an inbetween (smirk) on target3 for base shape curve3
# The inbetween will take effect at a weight of 0.2
pm.blendShape( 'blendShape2', edit=True, ib=True, t=('curve3', 2, 'smirk', 0.2) )