Saturday, January 31, 2009

Scripts - Stage9

//this script allows you to multiply select multiple (random) faces on a polygon model for further manipulation


int $i = 1;
while ($i < 200){

//picks a random face number
int $facenum = rand(239);

//defines the name of face
string $facename = ("pCylinder1.f[" + $facenum + "]");

//adds that face to the current selection
select -tgl $facename;

$i = $i + 1;
$i++;
}

No comments:

Post a Comment