Skip to content

Instantly share code, notes, and snippets.

@RiggingRanger
Created August 3, 2020 02:19
Show Gist options
  • Save RiggingRanger/85b2ab6800278bfcde9733a006f6d735 to your computer and use it in GitHub Desktop.
Save RiggingRanger/85b2ab6800278bfcde9733a006f6d735 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)
@DryreL
Copy link

DryreL commented Jun 11, 2022

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment