Skip to content

Instantly share code, notes, and snippets.

@aigcoder
Forked from RiggingRanger/resetBindPose.py
Created January 23, 2025 07:50
Show Gist options
  • Select an option

  • Save aigcoder/eb7abbcbd655d781f05bdd836f595e5f to your computer and use it in GitHub Desktop.

Select an option

Save aigcoder/eb7abbcbd655d781f05bdd836f595e5f 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