//author : Walter Behrnes //title : character select set. //version : 1.0 //date last motified : ? been awhile since I wrote this //instructions: open this file in your script editor, edit and drag and paste to shelf //** For this to work on your character you have to do a little bit of editing to the file //** on lines 34,37,46,49,59,62,72,75,85,88,91 //** after the select -r replace everything with in the""with the correct nodes if ( (`window -ex AnimCtrl`) == true ) deleteUI AnimCtrl; string $window = `window -widthHeight 150 500 -title "Anim Contrl" AnimCtrl`; columnLayout -adj true; text -label "Anim Ctrl Main:"; // Select Node by the name of Translate_Root separator -height 10 -style "double"; button -label "Translate_Root" -align "center" -c " select -r Translate_Root;"; separator -height 20 -style "double"; text -label "Hand Ctrl:"; // Select Node by the name of R_Hand Nodes button -label "R_Hand_IK" -align "center" -c " select -r R_Hand_IK ;"; button -label "R_Wrist" -align "center" -c " select -r L_W_upper|R_Wrist ;"; separator -height 10 -style "single"; // Select Node by the name of L_Hand Node button -label "L_Hand_IK" -align "center" -c " select -r L_Hand_IK ;"; button -label "L_Wrist" -align "center" -c " select -r R_W_upper|L_Wrist ;"; separator -height 20 -style "double"; text -label "Head Ctrl:"; // Select Node by the name of eye And mouth Node button -label "Eyes" -align "center" -c " select -r Eyes ;"; button -label "Mouth" -align "center" -c " select -r gumslower ;"; separator -height 20 -style "double"; text -label "Feet Ctrl:"; // Select Node by the name of Feet Node button -label "L_Foot" -align "center" -c " select -r L_Foot ;"; button -label "R_Foot" -align "center" -c " select -r R_Foot ;"; separator -height 20 -style "double"; text -label "Chest Ctrl:"; // Select Node by the name of backcontrol Node button -label "Top_Back" -align "center" -c " select -r UpBackControl ;"; button -label "Mid_Back" -align "center" -c " select -r MidBackControl ;"; button -label "Low_Back" -align "center" -c " select -r LowBackControl ;"; showWindow $window; // end script