ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
listSets [-allSets] [-extendToShape] [-object name] [-type uint]
[object]
listSets は、取り消し可能、照会不可能、および 編集不可能 です。
オブジェクトが属するすべてのセットのリストを入手するために使用します。オブジェクトの特定タイプのセットを入手するには、type フラグも使用します。シーン内のすべてのセットのリストを入手するには、コマンド ラインでオブジェクトを指定せずにフラグを使用します。
string[] | (オブジェクトが属するすべてのセットの文字配列) |
sets
allSets, extendToShape, object, type
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// Get a list of all the sets which `nurbsSphere1` belongs to:
listSets -object nurbsSphere1;
// Get a list of all the deformer sets in the scene:
listSets -type 2;
// Get a list of all the rendering sets which `coneShape1` belongs to:
listSets -type 1 -object coneShape1;