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.
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
chains(c)
|
boolean
|
|
||
|
||||
meshes(m)
|
boolean
|
|
||
|
||||
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( );