blendShapeGrpの中にeye_geo_grpという名前を含むグループがあったら削除するだけ
string $children[] = `listRelatives -ad -f "blendShapeGrp"`;
for($child in $children)
{
if(`objExists $child`)
{
if(`gmatch $child "*eye_geo_grp"`)
{
delete $child;
}
}
}
自分用メモ
Go to list of users who liked
More than 5 years have passed since last update.
blendShapeGrpの中にeye_geo_grpという名前を含むグループがあったら削除するだけ
string $children[] = `listRelatives -ad -f "blendShapeGrp"`;
for($child in $children)
{
if(`objExists $child`)
{
if(`gmatch $child "*eye_geo_grp"`)
{
delete $child;
}
}
}
自分用メモ
Register as a new user and use Qiita more conveniently
Go to list of users who liked