Create Cluster
Mel Scripting February 4th, 2008
In Maya, once you create a cluster, it will return to object mode, then you will have to go back to component mode and create a second cluster. this is very frustrated, so I always have this simple script in my tool set to create clusters faster, one and another one without going back to object mode back and forth.
global proc s_createClusterProc()
{
string $clusterNew[]=`newCluster " -envelope 1"`;
string $curveDeformer[]=`cluster -q -geometry`;
changeSelectMode -component;
hilite -r $curveDeformer;
}

December 17th, 2008 at 3:40 am
I think it is useful