Here you can find a little script that can be useful.
If you assign it to a button on the Octane shelf, you can use it to batch change the geometry type parameter.
Just select all the geometry you want to be Movable Proxy and click the button you created, it will be converted to Movable Proxy.
Hope it will be useful.
Ciao!
Eugenio
Code: Select all
string $obj[]= `ls -sl`;
string $dagnodes[] = `listRelatives -s -path $obj`;
print("\nnumber of selected objects:"+size($dagnodes)+"\n");
int $i;
int $count =0;
int $err=0;
for($i=0;$i<size($dagnodes);$i++){
if (`attributeExists "octGeomType" $dagnodes[$i]`) {
eval("setAttr "+$dagnodes[$i] +".octGeomType 0");
$count++;
} else {
$err++;
}
}
print ("attributes of "+$count+" Objects changed\n");
print ($err + " Objects of selection list were from different type and have not been changed\n\n\n");