There is a bug in the HIK system and the result is that the skeleton visibility button fails to display the joints any longer. Here is a script that will turn them back on. Note that it doesn’t fix the bug, it just allows you to see your joints again.
- import maya.cmds as cmds
- skeletonRoot = cmds.ls(selection = True)
- skeletonList = cmds.listRelatives(skeletonRoot, allDescendents = True, type = 'joint')
- print(skeletonList)
- for eachJoint in skeletonList:
- cmds.setAttr(str(eachJoint) + '.drawStyle', 0)
23
SEP
2018
SEP
2018
About the Author:
I RUN this joint! And I am a digital artist. BFA from the University of Colorado with an emphasis in 3D Animation. I worked in medical animation for some time. I then narrowly escaped with an only partially crushed spirit. Since then I have been expanding my skill set, reaching out into custom coding, game and app development.