-
-
Save aigcoder/eb7abbcbd655d781f05bdd836f595e5f to your computer and use it in GitHub Desktop.
Reset / Save Bind Pose in Maya
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) |
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
| """Saves a new bind pose for selected joints.""" | |
| import maya.cmds as cmds | |
| cmds.dagPose(bindPose=True, save=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment