Go to: Synopsis. Return value. Related.
Flags. MEL
examples.
effector [-hide
boolean] [-name string]
[object]
effector is undoable, queryable, and editable.
The effector command is used to set the name or hidden flag for the
effector. The standard edit (-e) and query (-q) flags are used for
edit and query functions.
In query mode, return type is based on queried flag.
ikHandle, ikSolver, ikSystem
hide, name
Long name (short name) |
Argument types |
Properties |
-name(-n) |
string |
   |
|
Specifies the name of the effector. |
|
-hide(-hi) |
boolean |
   |
|
Specifies whether to hide drawing of effector if attached to a
handle. |
|
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. |
// Will cause effector1 not to be displayed if attached to a handle.
// This is the default.
//
effector -e -hi true effector1;
// Will cause effector1 to be displayed if attached to a handle.
//
effector -e -hi false effector1;