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

概要

affects [-by] [-type string] string

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

このコマンドは、指定されたアトリビュートに作用するノードまたはノード タイプに関するアトリビュートのリストを返します。

戻り値

string作用される/作用するアトリビュートのリスト

キーワード

attribute, node, class, dg

関連

affectedNet, listConnections

フラグ

by, type
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
-by(-) create
指定したアトリビュートに作用するアトリビュートではなく、指定したアトリビュートの作用を受けるアトリビュートを表示します。
-type(-t) string create
「作用対象」情報を取得するスタティック ノード タイプ

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

MEL 例

// List the attributes on node "sphere" that affect the "tx" attribute
sphere -n sphere;
affects tx sphere;
// List the attributes on nodes of type "transform" that are affected by
// the "ty" attribute
affects ty -by -t transform;
// List the attributes on nodes of type "revolve" that affect the
// "outputSurface" attribute
affects outputSurface -t revolve;