Skip to content

Instantly share code, notes, and snippets.

@DryreL
Forked from RiggingRanger/resetBindPose.py
Created June 11, 2022 18:47
Show Gist options
  • Save DryreL/9cd5f42b18f9cd7386af1e1e74144d5a to your computer and use it in GitHub Desktop.
Save DryreL/9cd5f42b18f9cd7386af1e1e74144d5a to your computer and use it in GitHub Desktop.
Reset / Save Bind Pose in Maya
"""Reset bind pose for selected joints."""
import maya.cmds as cmds
cmds.dagPose(bindPose=True, reset=True)
"""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