Go to: Synopsis. Return value. Keywords. Flags. Python examples.
combinationShape([addDriver=boolean], [allDrivers=boolean], [blendShape=string], [combinationTargetIndex=int], [combinationTargetName=string], [combineMethod=int], [driverTargetIndex=int], [driverTargetName=string], [exist=boolean], [removeDriver=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
combinationShape is undoable, queryable, and editable.
Command to create or edit drive relationship of blend shape targets
Int | In edit mode, return the newly created combination shape node name. |
In query mode, return type is based on queried flag.
combination, target
addDriver, allDrivers, blendShape, combinationTargetIndex, combinationTargetName, combineMethod, driverTargetIndex, driverTargetName, exist, removeDriver
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can have multiple arguments, passed either as a tuple or a list.
|
import maya.cmds as cmds
import maya.cmds as cmds
# Set a blend shape target as combination target, and another two blend shape targets as drivers, using target indexes.
#
cmds.combinationShape(blendShape='blendShape1', combinationTargetIndex=1, driverTargetIndex=[2,3])
# Add two blend shape targets as drivers to a blend shape combination target, using target names.
#
cmds.combinationShape(edit='1', blendShape='blendShape1', combinationTargetName='TargetA', addDriver=1, driverTargetName=['TargetB', 'TargetC'])
# Remove two blend shape targets from drivers of a blend shape combination target.
#
cmds.combinationShape(edit='1', blendShape='blendShape1', combinationTargetIndex=1, removeDriver=1, driverTargetName='TargetB', driverTargetIndex=2;
# Change combine method of a blend shape combination target
#
cmds.combinationShape(edit='1', blendShape='blendShape1', combinationTargetIndex=1, combineMethod=2;
# Remove all drivers of a blend shape combination target.
#
cmds.combinationShape(edit='1', blendShape='blendShape1', combinationTargetIndex=1, removeDriver=1, allDrivers=1)
# Query all drivers of a blend shape combination target.
#
cmds.combinationShape(query='1', blendShape='blendShape1', combinationTargetIndex=1, allDrivers=1)