top of page
Search
Writer's pictureKevin Torres

Useful Rigging Scripts

Copy Skin Weights from a mesh to another


string $sel[] = `ls -sl`;
string $cluster = `findRelatedSkinCluster $sel[0]`;
string $joints[] = `listConnections -s 1 -d 0 ($cluster + ".matrix")`;
select -r $sel[1];
select -add $joints;
SmoothBindSkin -tsb -ta;
string $newCluster = `findRelatedSkinCluster $sel[1]`;
copySkinWeights -ss $cluster -ds $newCluster -nm;



11 views0 comments

Comentarios


bottom of page