View Single Post
# 2 07-12-2004 , 01:54 PM
Alan's Avatar
Moderator
Join Date: Oct 2002
Location: London, UK
Posts: 2,800
use a for loop:
select your objects in the outliner then run this

global proc changeSmoothing(int $res)
{
pickWalk -d down;
string $objArray[] = `ls -sl`;
for($obj in $objArray)
{
string $conns[] = `listConnections $obj`;
for($conn in $conns)
{
if(`match "polySmoothFace" $conn` != "")
{
setAttr ($conn + ".divisions") $res;
}
}
}
}

changeSmoothing(1);

Change the number in the parametres that will be your smoothing level.

That should do it.

user added image
Alan


Technical Director - Framestore

Currently working on: Your Highness

IMDB