Go to: Synopsis. Return value. Keywords. Flags. MEL examples.

Synopsis

deformerEvaluator [-chains] [-meshes] [-verbose boolean]

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.

Return value

string[]the debug information when query mode is used.

In query mode, return type is based on queried flag.

Keywords

OpenCL, debug

Flags

chains, meshes, verbose
Long name (short name) Argument types Properties
-chains(-c) createquery
Print information about all supported deformation chains.
-meshes(-m) createquery
Print information about all meshes.
-verbose(-v) boolean createquery
Print more information of other flag.

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 be used more than once in a command.

MEL examples

// Print information about selected nodes
deformerEvaluator;

// Print all active deformation chains.
deformerEvaluator -chains;

// Print a chain for each mesh or a reason it is not supported
deformerEvaluator -meshes;

// Prints less information about meshes
deformerEvaluator -meshes -verbose false;

// For each selected node print the chain or a reason it is not supported
deformerEvaluator;