ジャンプ先: 概要. 戻り値. キーワード. フラグ. MEL 例.
deformerEvaluator [-active] [-allowDownloadRejections boolean] [-allowDownloads boolean] [-asNodeName] [-asText] [-deformerChain] [-deformers] [-dumpInfo] [-dumpOutliner] [-gpuBlockPolicy string] [-isOpenCLValid boolean] [-limitMinimumVerts boolean] [-list] [-members] [-meshes] [-message] [-minimumVerts int] [-nodeInfo] [-nodeStatus] [-omitPassthroughs] [-outlinerHash] [-partition] [-purge] [-reuseMode string string] [-verbose boolean]
deformerEvaluator は、取り消し不可能、照会可能、および編集不可能です。
デフォーマ エバリュエータ ステータスに関するデバッグ情報を出力します。照会モードの場合、デバッグ情報は string[] として返されます。照会モードでない場合、デバッグ情報はスクリプト エディタに表示されます。| string[] | 照会モードが使用されている場合は、デバッグ情報です。 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
|---|---|---|---|---|
-active(-act)
|
|
|
||
|
||||
-allowDownloadRejections(-adr)
|
boolean
|
|
||
|
||||
-allowDownloads(-adl)
|
boolean
|
|
||
|
||||
-asNodeName(-nm)
|
|
|
||
|
||||
-asText(-txt)
|
|
|
||
|
||||
-deformerChain(-dch)
|
|
|
||
|
||||
-deformers(-d)
|
|
|
||
|
||||
-dumpInfo(-di)
|
|
|
||
|
||||
-dumpOutliner(-dol)
|
|
|
||
|
||||
-gpuBlockPolicy(-gbp)
|
string
|
|
||
|
||||
-isOpenCLValid(-clv)
|
boolean
|
|
||
|
||||
-limitMinimumVerts(-lmv)
|
boolean
|
|
||
|
||||
-list(-ls)
|
|
|
||
|
||||
-members(-mbr)
|
|
|
||
|
||||
-meshes(-m)
|
|
|
||
|
||||
-message(-msg)
|
|
|
||
|
||||
-minimumVerts(-mnv)
|
int
|
|
||
|
||||
-nodeInfo(-ni)
|
|
|
||
|
||||
-nodeStatus(-ns)
|
|
|
||
|
||||
-omitPassthroughs(-opt)
|
|
|
||
|
||||
-outlinerHash(-olh)
|
|
|
||
|
||||
-partition(-prt)
|
|
|
||
|
||||
-purge(-prg)
|
|
|
||
|
||||
-reuseMode(-ru)
|
string string
|
|
||
|
||||
-verbose(-v)
|
boolean
|
|
||
|
||||
// Set the reuse mode for deformers and sinks deformerEvaluator -ru "always" "never"; // List all registered GPU deformers. deformerEvaluator -deformers; // List all nodes that are on the GPU deformerEvaluator -ls; // List all meshes that are on the GPU deformerEvaluator -ls -m; // List information about selected nodes deformerEvaluator; // List information about all active nodes deformerEvaluator -act; // List information about selected meshes deformerEvaluator -m; // List deformation chain information about selected meshes deformerEvaluator -dch; // List all the deformation chains of all meshes that are active on the GPU deformerEvaluator -dch -act; // List the names of the nodes that are in the same cluster(s) as the specified nodes. deformerEvaluator -mbr; // List the messages associated with the selected nodes. deformerEvaluator -msg; // Return all active clusters in JSON format whole omitting all passthrough nodes. deformerEvaluator -query -dumpInfo -opt;