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

Synopsis

bindSkin [-byClosestPoint] [-byPartition] [-colorJoints] [-delete] [-doNotDescend] [-enable boolean] [-name string] [-partition string] [-toAll] [-toSelectedBones] [-toSkeleton] [-unbind] [-unbindKeepHistory] [-unlock] [objects]

bindSkin is undoable, queryable, and editable.

This command binds the currently selected objects to the currently selected skeletons. Shapes which can be bound are: meshes, nurbs curves, nurbs surfaces, lattices, subdivision surfaces, and API shapes. Multiple shapes and multiple skeletons can be bound at once by selecting them or specifying them on the command line. Selection order is not important.

The skin is bound using the so-called "rigid" bind, in which the components are rigidly attached to the closest bone in the skeleton. Flexors can later be added to the skeleton to smooth out the skinning around joints.

The skin(s) can be bound either to the entire skeleton hierarchy of the selected joint(s), or to only the selected joints. The entire hierarchy is the default. The -tsb/-toSelectedBones flag allows binding to only the selected bones.

This command can also be used to detach the skin from the skeleton. Detaching the skin is useful in a variety of situations, such as: inserting additional bones, deleting bones, changing the bind position of the skeleton or skin, or simply getting rid of the skinning nodes altogether. The options to use when detaching the skin depend on how much of the skinning info you want to get rid of. Namely: (1) -delete or -unbind: remove all skinning nodes, (2) -unbindKeepHistory: remove the skinning sets, but keep the weights, (3) -disable: disable the skinning but keep the skinning sets and the weights.

Return value

string

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

Related

blendShape, boneLattice, copyFlexor, copySkinWeights, dagPose, flexor, skinCluster, skinPercent, wire, wrinkle

Flags

byClosestPoint, byPartition, colorJoints, delete, doNotDescend, enable, name, partition, toAll, toSelectedBones, toSkeleton, unbind, unbindKeepHistory, unlock
Long name (short name) Argument types Properties
-toSkeleton(-ts) create
objects will be bound to the selected skeletons. The toSkeleton, toAll and toSelectedBones flags are mutually exclusive. The toSkeleton flag is the default.
-toSelectedBones(-tsb) create
objects will be bound to the selected bones only.
-toAll(-ta) create
objects will be bound to the entire selected skeletons. Even bones with zero influence will be bound, whereas the toSkeleton will only bind non-zero influences.
-byClosestPoint(-bcp) create
bind each point in the object to the segment closest to the point. The byClosestPoint and byPartition flags are mutually exclusive. The byClosestPoint flag is the default.
-byPartition(-bp) create
bind each group in the partition to the segment closest to the group's centroid. A partition must be specified with the -p/-partition flag
-partition(-p) string create
Specify a partition to bind by. This is only valid when used with the -bp/-byPartition flag.
-unbind(-ub) create
unbind the selected objects. They will no longer move with the skeleton. Any bindSkin history that is no longer used will be deleted.
-unbindKeepHistory(-ubk) create
unbind the selected objects. They will no longer move with the skeleton. However, existing weights on the skin will be kept for use the next time the skin is bound. This option is appropriate if you want to modify the skeleton without losing the weighting information on the skin.
-unlock(-ul) create
unlock the selected objects. Since bindSkin will no longer give normal results if bound objects are moved away from the skeleton, bindSkin locks translate, rotate and scale. This command unlocks the selected objects translate, rotate and scale.
-delete(-d) create
Detach the skin on the selected skeletons and remove all bind- related construction history.
-enable(-en) boolean create
Enable or disable a bind that has been disabled on the selected skeletons. To enable the bind on selected bones only, select the bones and use the -tsb flag with the -en flag. This flag is used when you want to temporarily disable the bind without losing the set information or the weight information of the skinning, for example if you want to modify the bindPose.
-doNotDescend(-dnd) create
Do not descend to shapes that are parented below the selected object(s). Bind only the selected objects.
-colorJoints(-cj) create
In bind mode, this flag assigns colors to the joints based on the colors assigned to the joint's skin set. In delete and unlock mode, this flag removes the colors from joints that are no longer bound as skin. In disable and unbindKeepHistory mode, this flag does nothing.
-name(-n) string create
This flag is obsolete.

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

// to bind the selected objects to the selected skeleton
//
bindSkin;
// to bind nurbsSphere1 and pPlane1 to the skeleton containing joint2
//
bindSkin nurbsSphere1 joint1 pPlane1;
// to bind the selected partition to the selected skeleton
//
bindSkin -bp;
// to bind the selected objects to the selected bones only,
// not the entire skeleton
//
bindSkin -tsb;
// to detach the selected objects and delete any unused
// bindSkin history
//
bindSkin -unbind;
// to detach pPlane1 and delete any unused
// bindSkin history
//
bindSkin -unbind pPlane1;
// to detach the selected objects and keep the history
//
bindSkin -unbindKeepHistory;
// to disable the skin on the selected skeletons. This gives
// the effect of detaching the skin without removing the
// bindSkin groups on the object
//
bindSkin -enable 0;
// to enable skin on a skeleton which has been disabled
//
bindSkin -enable 1;