So I thought I would post some helpful scripts that I use everyday to make your modeling process a little more efficient.
One is a simple wireframe on shaded script which allows you to toggle wireframe on shaded with a single hotkey. Another does the same but with the X-Ray function allowing you to X-Ray a single Mesh. Great for image plane modeling. Another allows you to flip the model on the x axis and freeze transforms immediately. One will allign all verticies on the x axis so you don;t get a seam on your mirror. To get them to work you must assign a hot key for the function. So you just copy the text into your User Setting under Hotkeys and paste the script into command tab.
Enjoy
1. mirror GEO
string $flipMe [] = `ls -sl`;
duplicate -rr; scale -r -1 1 1;
makeIdentity -apply true -t 1 -r 1 -s 1 -n 0;
select -hierarchy;
string $selHi[] = `ls -sl`;
int $looper=0;
while ($looper < `size($selHi)`) { select -cl; $looper= $looper + 1; select $selHi[$looper]; ReversePolygonNormals; $looper= $looper + 1; }
2. Xray Mesh string
$sel[]; int $temp[]; int $value; $sel = `ls -sl -dag -ap -typ surfaceShape`; for ($obj in $sel) { $temp = `displaySurface -q -xRay $obj`; $value=$temp[0]; if($value==1) displaySurface -xRay 0 $obj; else displaySurface -xRay 1 $obj; };
3. Wireframe_on_Shaded
string $getPanel=`getPanel -wf`; modelEditor -e -wos (!`modelEditor -q -wos $getPanel`) $getPanel;
4. allign to X Axis
move -r -a -x 0 ;