ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
cluster [-after] [-afterReference] [-before] [-bindState boolean] [-components] [-deformerTools] [-dumpInfo] [-envelope float] [-exclusive string] [-fixedSetupData string] [-frontOfChain] [-geometry string] [-geometryIndices] [-ignoreSelected] [-includeHiddenSelections] [-name string] [-parallel] [-prune] [-relative] [-remove] [-resetGeometry] [-selectedComponents] [-split] [-useComponentTags] [-weightedNode string string]
[objects]
cluster は、取り消し可能、照会可能、および編集可能です。
cluster コマンドは、クラスタを作成するか、既存のクラスタのメンバーシップを編集します。このコマンドは、新しいクラスタの作成時に、クラスタ ノードの名前を返します。 クラスタ作成後、クラスタのウェイトは percent コマンドまたは set editor ウィンドウを使用して変更することができます。| string[] | (クラスタ ノード名とクラスタ ハンドル名) |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
|---|---|---|---|---|
-after(-af)
|
|
|
||
|
||||
-afterReference(-ar)
|
|
|
||
|
||||
-before(-bf)
|
|
|
||
|
||||
-bindState(-bs)
|
boolean
|
|
||
|
||||
-components(-cmp)
|
|
|
||
|
||||
-deformerTools(-dt)
|
|
|
||
|
||||
-dumpInfo(-dui)
|
|
|
||
|
||||
-envelope(-en)
|
float
|
|
||
|
||||
-exclusive(-ex)
|
string
|
|
||
|
||||
-fixedSetupData(-fsd)
|
string
|
|
||
|
||||
-frontOfChain(-foc)
|
|
|
||
|
||||
-geometry(-g)
|
string
|
|
||
|
||||
-geometryIndices(-gi)
|
|
|
||
|
||||
-ignoreSelected(-is)
|
|
|
||
|
||||
-includeHiddenSelections(-ihs)
|
|
|
||
|
||||
-name(-n)
|
string
|
|
||
|
||||
-parallel(-par)
|
|
|
||
|
||||
-prune(-pr)
|
|
|
||
|
||||
-relative(-rel)
|
|
|
||
|
||||
-remove(-rm)
|
|
|
||
|
||||
-resetGeometry(-rg)
|
|
|
||
|
||||
-selectedComponents(-cms)
|
|
|
||
|
||||
-split(-sp)
|
|
|
||
|
||||
-useComponentTags(-uct)
|
|
|
||
|
||||
-weightedNode(-wn)
|
string string
|
|
||
|
||||
// Create a cluster which uses the transformation of elbow1 // cluster -wn elbow1 elbow1; // Edit cluster1 to use the transformation of wrist1. // cluster -bs 1 -wn wrist1 wrist1 cluster1; // Create a relative cluster with its own cluster handle. The // cluster handle is drawn as the letter "C". // cluster -rel; // Modify the membership of an existing cluster. First, find // the name of the cluster's associated set, then use the sets // command to edit the set membership (add a cube and remove a plane). // listConnections -type objectSet cluster1; // Result: cluster1Set sets -add cluster1Set pCube1; sets -rm cluster1Set pPlane1;