ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.

概要

affectedNet [-type string] [node...]

affectedNet は、取り消し可能、照会可能、および 編集可能 です。

このコマンドはノードまたはノード タイプのアトリビュートのリストを取得します。かつ、ソース ノードのアトリビュートが目的ノードのアトリビュートに影響を与える場合に接続される、TdnAffect タイプのノードを各アトリビュートに 1 つずつ作成します。

戻り値

なし

照会モードでは、戻り値のタイプは照会されたフラグに基づきます。

関連

affects, listConnections

フラグ

type
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
-type(-t) string create
1 つのノードではなく、指定したノード タイプの情報を取得します

フラグはコマンドの作成モードで表示できます フラグはコマンドの編集モードで表示できます
フラグはコマンドの照会モードで表示できます コマンド内でフラグを複数回使用できます。

MEL 例

// Create a network of this transform node's attributes that affect
// each other
affectedNet transform1;
// Create a network all of the transform shared attributes that affect
// each other
affectedNet -t transform;
// Create a network of the revolve and shape node type attributes that
// affect each other
affectedNet -t revolve -t shape;