ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
listConnections [-connections boolean] [-destination boolean] [-exactType boolean] [-fullNodeName boolean] [-plugs boolean] [-shapes boolean] [-skipConversionNodes boolean] [-source boolean] [-type string]
listConnections は、取り消し不可能、照会不可能、および編集不可能です。
特定のオブジェクトに接続されている、指定したタイプのすべてのアトリビュートやオブジェクトのリストを返します。オブジェクトを指定しない場合、選択したノードの接続がリスト表示されます。
connection, dg, dependency, graph, plug, connect
connectAttr, connectionInfo, disconnectAttr, getAttr, isConnected, listAttr, setAttr
connections, destination, exactType, fullNodeName, plugs, shapes, skipConversionNodes, source, type
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
sphere -ch on -n BALL;
setKeyframe;
// List all connections to BALL
string $list[] = `listConnections BALL`;
// List only incoming connections from BALL.tx
listConnections -d off -s on BALL.tx;
// List connections from BALL to nodes of type 'transform'
listConnections -t transform;
// List connections on BALL, ignoring unit conversion nodes
listConnections -scn on BALL;