Created
December 25, 2017 03:36
-
-
Save manhha00/dca147f762c57155151a0660d8632e20 to your computer and use it in GitHub Desktop.
maya - python - select all joint in bind of selected mesh
This file contains 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
import maya.cmds as cmds | |
sel = cmds.ls(sl = True) | |
jnts = cmds.skinCluster(sel, inf = True, q = True) | |
cmds.select(jnts) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment