Your Ad Here

Go to: Synopsis. Return value. Related. Python examples.

Synopsis

disconnectJoint()

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

disconnectJoint is undoable, queryable, and editable.

This command will break a skeleton at the selected joint and delete any associated handles.

Return value

None

Related

connectJoint, insertJoint, joint, mirrorJoint, reroot

Python examples

import maya.cmds as cmds

cmds.joint( p=(0, 0, 0), name='jointA' )
cmds.joint( p=(0, 1, 0), name='jointB' )
cmds.joint( p=(0, 2, 0), name='jointC' )
cmds.disconnectJoint( 'jointB' )

  

Return to Autodesk Index


Your Ad Here