just working out some details on some character designs.
quick little mel script for ya. global proc exportMultipleOBJs () { $sel = `ls -sl`; $ws = `workspace -q -rd`; $bp = ($ws+”bodypaint/”); for($i=0;$i<size($sel);$i++) { select -r $sel[$i]; print $sel[$i]; string $file = ($bp+$sel[$i]); file -options “groups=0;ptgroups=0;materials=0;smoothing=1;normals=1″ -typ “OBJexport” -preserveReferences -exportSelected $file; }; select -cl; }; I had a bunch of little objects in my [...]