자주 쓰는 기능 업그레이드로 시간 절약하기.
1. Extract Pro (Face Extraction 이후 히스토리 제거와 센터 피봇까지 한 번에)
polyChipOff -ch 1 -kft 1 -dup 0 -off 0 `ls -sl`;
polyPerformAction ("polySeparate -rs 1", "o", 0);
parent -w;
CenterPivot;
DeleteHistory;
FreezeTransformations;
string $myArray[] = `ls-sl`;
select $myArray[1];
MoveTool;
2. Duplicate Pro (Face Duplication 이후 히스토리 제거와 센터 피봇까지 한 번에)
polyChipOff -ch 1 -kft 1 -dup 1 -off 0 `ls -sl`;
polyPerformAction ("polySeparate -rs 1", "o", 0);
parent -w;
CenterPivot;
DeleteHistory;
FreezeTransformations;
string $myArray[] = `ls-sl`;
select $myArray[1];
MoveTool;
3. Combine Pro (컴바인 이후 히스토리 제거와 센터피봇까지 한번에)
polyUnite -ch 1 -mergeUVSets 2 -centerPivot -name `ls -sl`;
CenterPivot;
DeleteHistory;
FreezeTransformations;
4. Separate Pro (컴바인 이후 히스토리 제거와 센터피봇까지 한번에)
polySeparate -ch 1 `ls -sl`;
CenterPivot;
DeleteHistory;
FreezeTransformations;