Skip to content

Instantly share code, notes, and snippets.

@splinecraft
Created September 28, 2017 00:02
Show Gist options
  • Save splinecraft/0c7afb766e59e4d90821ee09f3d1305f to your computer and use it in GitHub Desktop.
Save splinecraft/0c7afb766e59e4d90821ee09f3d1305f to your computer and use it in GitHub Desktop.
unhide joints
for node in pm.selected():
if node.nodeType() in ["joint"]:
if node.drawStyle.get() is 0:
node.drawStyle.set(2)
else:
node.drawStyle.set(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment