15 lines
452 B
Plaintext
15 lines
452 B
Plaintext
//******************************************************************************
|
|
//
|
|
// 版权所有: 玉溪时光科技有限公司
|
|
// 联系邮箱: q.100@qq.com
|
|
// 开发日期: 2023/08/08
|
|
//
|
|
//******************************************************************************
|
|
|
|
global proc SGRebuildTarget (int $targetIds[], string $blendShape){
|
|
select -cl;
|
|
for($targetId in $targetIds){
|
|
select -add `sculptTarget -e -regenerate true -target $targetId $blendShape`;
|
|
}
|
|
}
|