// pfxJustShadows // v1.0 // March 10 2000 // Soren 'kurgan' Jacobsen // kurgan@kurgan.dk (suggestions/bugreports welcome) // http://www.kurgan.dk/ // // turns off Surface rendering for pfx strokes, keeps shadows global proc pfxJustShadows() { string $selectedObjects[] = `ls -type brush`; for( $current in $selectedObjects) { setAttr ($current + ".modifyDepth") 0; setAttr ($current + ".depth") 0; setAttr ($current + ".modifyColor") 0; setAttr ($current + ".modifyAlpha") 0; } }