This command will break a skeleton at the selected joint and delete any associated handles.
| Long name (short name) | Argument Types | Properties | |
|---|---|---|---|
| attachHandleMode (ahm) | bool |
|
|
|
|||
| deleteHandleMode (dhm) | bool |
|
|
|
|||
Derived from mel command maya.cmds.disconnectJoint
Example:
import pymel.core as pm
pm.joint( p=(0, 0, 0), name='jointA' )
pm.joint( p=(0, 1, 0), name='jointB' )
pm.joint( p=(0, 2, 0), name='jointC' )
pm.disconnectJoint( 'jointB' )