This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Enter move-joints-mode for all skinned geo.""" | |
import maya.cmds as cmds | |
for skin in cmds.ls(type='skinCluster'): | |
cmds.skinCluster(skin, edit=True, moveJointsMode=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Reset bind pose for selected joints.""" | |
import maya.cmds as cmds | |
cmds.dagPose(bindPose=True, reset=True) |