Skip to content

Instantly share code, notes, and snippets.

@Giakaama
Forked from manhha00/select all joint in bind
Created February 14, 2022 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Giakaama/b2e08b75b0f267e566cd184fb400340f to your computer and use it in GitHub Desktop.
Save Giakaama/b2e08b75b0f267e566cd184fb400340f to your computer and use it in GitHub Desktop.
maya - python - select all joint in bind of selected mesh
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