ジャンプ先: 概要. 戻り値.
関連項目. フラグ. MEL 例.
group [-absolute] [-empty]
[-name string] [-parent string] [-relative] [-useAsGroup string] [-world] [objects...]
group は 「元に戻す」が可能、「照会」が不可能、「編集」が不可能 です。
このコマンドは、新規グループで指定したオブジェクトをグループ化して、新規グループ名を返します。 -em
フラグを指定すると、空のグループ(オブジェクトなし)が作成されます。 -w フラグを指定すると新規グループはワールド空間に置かれ、-p
を指定すると指定したノードに配置されます。-w も -p
も指定しなければ、新規グループは一番下の共通グループに置かれます(そのようなグループが存在しない場合はワールド空間)。オブジェクトが同名の別のオブジェクトにグループ化されると、このコマンドによってどちらかのオブジェクトの名前が変更されます。
duplicate, instance, parent,
ungroup
absolute, empty, name, parent, relative,
useAsGroup, world
: コマンドの作成モードで使用可能なフラグ |
: コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ |
: 1 つのコマンドで複数回使用可能なフラグ |
// create an empty group node with no children
group -em -name null1;
// create some objects and group them
sphere -n sphere1;
circle -n circle1;
group -n group1 circle1 sphere1;
// create a group node under another node and move
// the sphere under the new group node.
group -parent null1 sphere1;