Go to: Synopsis. Return value. Keywords. Flags. Python examples.
deformerEvaluator([chains=boolean], [meshes=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
deformerEvaluator is NOT undoable, queryable, and NOT editable.
Print debug information about deformer evaluator status. In
query mode the debug information is returned as a string[],
otherwise the information is displayed in the script editor.
string[] | the debug information when query mode is used. |
In query mode, return type is based on queried flag.
OpenCL, debug
chains, meshes
Long name (short name) |
Argument types |
Properties |
chains(c)
|
boolean
|
|
|
Print information about all supported deformation chains.
|
|
meshes(m)
|
boolean
|
|
|
Print information about all meshes.
|
|
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
# Print all active deformation chains.
cmds.deformerEvaluator( chains=True )
// Print a chain for each mesh or a reason it is not supported
cmds.deformerEvaluator( meshes=True )
// For each selected node print the chain or a reason it is not supported
cmds.deformerEvaluator( );