aoJointsLibrary
// // aoKit // Andrew Odendaal's Maya Script Kit // Software developed by Andrew Odendaal // Code compatible with versions 7 - 8.5 // // Author : Andrew Odendaal // E-mail : andrew@andrewodendaal.com // Website: http://www.andrewodendaal.com // // select all joints in the scene global proc aoKitSelectAllJoints() {         select -r `ls -type "joint" "*"`; }       global proc aoKitJointsShowAxis() {         toggle -state on -localAxis; } global proc aoKitJointsHideAxis() {         toggle -state off -localAxis; } global proc aoKitJointsShowAxisAbove() {         toggle -state on -localAxis -a; } global proc aoKitJointsHideAxisAbove() {         toggle -state off -localAxis -a; } global proc aoKitJointsShowAxisBelow() {         toggle -state on -localAxis -b; } global proc aoKitJointsHideAxisBelow() {         toggle -state off -localAxis -b; }


back to top