ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
deformer [-after] [-afterReference] [-before] [-components] [-deformerTools] [-dumpInfo] [-exclusive string] [-fixedSetupData string] [-frontOfChain] [-geometry string] [-geometryIndices] [-ignoreSelected] [-includeHiddenSelections] [-name string] [-parallel] [-prune] [-remove] [-selectedComponents] [-split] [-type string] [-useComponentTags]
selectionList
deformer は、取り消し可能、照会可能、および編集可能です。
このコマンドは、指定したタイプのデフォーマを作成します。デフォーマでは、選択したオブジェクトが変形されます。| string[] | 作成/編集されたアルゴリズム ノードの名前。 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
|---|---|---|---|---|
-after(-af)
|
|
|
||
|
||||
-afterReference(-ar)
|
|
|
||
|
||||
-before(-bf)
|
|
|
||
|
||||
-components(-cmp)
|
|
|
||
|
||||
-deformerTools(-dt)
|
|
|
||
|
||||
-dumpInfo(-dui)
|
|
|
||
|
||||
-exclusive(-ex)
|
string
|
|
||
|
||||
-fixedSetupData(-fsd)
|
string
|
|
||
|
||||
-frontOfChain(-foc)
|
|
|
||
|
||||
-geometry(-g)
|
string
|
|
||
|
||||
-geometryIndices(-gi)
|
|
|
||
|
||||
-ignoreSelected(-is)
|
|
|
||
|
||||
-includeHiddenSelections(-ihs)
|
|
|
||
|
||||
-name(-n)
|
string
|
|
||
|
||||
-parallel(-par)
|
|
|
||
|
||||
-prune(-pr)
|
|
|
||
|
||||
-remove(-rm)
|
|
|
||
|
||||
-selectedComponents(-cms)
|
|
|
||
|
||||
-split(-sp)
|
|
|
||
|
||||
-type(-typ)
|
string
|
|
||
|
||||
-useComponentTags(-uct)
|
|
|
||
|
||||
// Sselect the geometries that you'd like to deform, // and use the deformer command as follows. For example, to deform a // cylinder with a deltaMush: // cylinder -ax 0 1 0 -r 1 -hr 10 -d 3 -s 8 -nsp 20 -ch 1; select -r nurbsCylinder1; deformer -type deltaMush; // To query the membership of the deformer // deformer -q -g deltaMush1; // To add additional geometries from your deformer, type: // select -r nurbsCylinder1 ; duplicate; // Result: nurbsCylinder2 // move -r -2.749017 0 0 ; deformer -e -g nurbsCylinder2 deltaMush1; // To remove a geometry from your deformer, type: // deformer -e -rm -g nurbsCylinder2 deltaMush1; // To query the components and the selected components used by the deformer // polyCylinder -r 1 -h 6 -sx 6 -sy 1 -sz 1; select -r pCylinder1.vtx[6:11] pCylinder1.vtx[13] ; cluster; select -r pCylinder1.vtx[4:5] pCylinder1.vtx[10:11] ; deformer -q -cmp cluster1; // Result: pCylinder1.vtx[6:11] pCylinder1.vtx[13] // deformer -q -cms cluster1; // Result: pCylinder1.vtx[10:11] //