移動先: 概要 戻り値 キーワード. 関連項目. フラグ. MEL 例.

概要

dgInfo [-allNodes] [-connections] [-dirty boolean] [-nodes] [-nonDeletable] [-outputFile string] [-propagation boolean] [-short] [-subgraph] [-type string]

dgInfo は 「元に戻す」が不可能「照会」が不可能「編集」が不可能 です。

このコマンドは、DG 情報をテキスト指向の方法で出力します。出力される情報の範囲は、-all フラグを使用した場合はグラフ全体、ノードやプラグを指定した場合はコマンド ライン上のノードやプラグ、そしてセレクション リストの順序で出力されます。

戻り値

なし

キーワード

debug, dependency, graph, node, output, connection

関連項目

dgdirty, dgeval

フラグ

allNodes, connections, dirty, nodes, nonDeletable, outputFile, propagation, short, subgraph, type
ロング ネーム(ショート ネーム) 引数型 プロパティ
-connections(-c) create
コネクション情報を出力します。
-nodes(-n) create
指定したノードを出力します。-all を使用した場合はグラフ全体を出力します。
-subgraph(-sub) create
ノードかプラグに作用されるサブグラフを出力します。-all を使用した場合は、サブグラフにグループ化されたグラフのすべてのノードを出力します。
-allNodes(-all) create
グラフ全体をコンテキストとして使用します。
-short(-s) create
ロング フォーマットではなく、ショート フォーマットで出力します。
-dirty(-d) boolean create
ダーティかクリーンのノード、プラグ、コネクションのみを出力します。デフォルトでは両方を出力します。
-propagation(-p) boolean create
伝播、非伝播のノード、プラグ、コネクションのみを出力します。 デフォルトでは両方を出力します。
-nonDeletable(-nd) create
削除できないノードも含まれます(通常は無視します)。
-type(-nt) string create
NODETYPE タイプのノードのみを表示するよう、出力をフィルタします。
-outputFile(-of) string create
STDERR ではなく、ファイル FILE に出力を送信します。

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL 例

// create a node
createNode -n NODE transform;
setKeyframe NODE.translate;
// Print all things connected to node NODE
dgInfo -c NODE;
// Print all connections currently in the graph
dgInfo -c -all;
// Print all connections to attribute tx on node NODE
dgInfo -c NODE.tx
// Print all dirty connections in the entire graph
dgInfo -c -all -d on;