Go to: Synopsis. Flags. Return value. Related. MEL examples.
flexor [-atBones] [-atJoints] [-deformerCommand string] [-list] [-noScale] [-toSkeleton] [-type string]
[objects]
flexor is undoable, queryable, and editable.
This command creates a flexor. A flexor a deformer plus a set of
driving attributes. For example, a flexor might be a sculpt object
that is driven by a joint's x rotation and a cube's y position.
atBones, atJoints, deformerCommand, list, noScale, toSkeleton, type
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
|
string[] (the names of the new flexor nodes)
cluster, deformer, lattice, percent, sculpt, wire, wrinkle
// Create a sculpt object with a max displacement of 4.0 at
// all selected joints:
flexor -typ sculpt -dc "sculpt -mxd 4.0" -aj;
// Create a lattice flexor at all joints on the skeleton:
flexor -type jointLattice -aj -ts;
// Create a lattice flexor of dimensions 4 6 4 at the selected joint
flexor -type jointLattice -dc "lattice -dv 4 6 4 -cp -dualBase true" -aj;