ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
 listConnections [-connections boolean] [-destination boolean] [-exactType boolean] [-fullNodeName boolean] [-plugs boolean] [-shapes boolean] [-skipConversionNodes boolean] [-source boolean] [-type string]   
listConnections は、取り消し不可能、照会不可能、および編集不可能です。
特定のオブジェクトに接続されている、指定したタイプのすべてのアトリビュートやオブジェクトのリストを返します。オブジェクトを指定しない場合、選択したノードの接続がリスト表示されます。| string[] | 接続 プラグ/ノードのリスト | 
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
|---|---|---|---|---|
| -connections(-c) | boolean |   | ||
| 
 | ||||
| -destination(-d) | boolean |   | ||
| 
 | ||||
| -exactType(-et) | boolean |   | ||
| 
 | ||||
| -fullNodeName(-fnn)2023.1 | boolean |   | ||
| 
 | ||||
| -plugs(-p) | boolean |   | ||
| 
 | ||||
| -shapes(-sh) | boolean |   | ||
| 
 | ||||
| -skipConversionNodes(-scn) | boolean |   | ||
| 
 | ||||
| -source(-s) | boolean |   | ||
| 
 | ||||
| -type(-t) | string |   | ||
| 
 | ||||
|  フラグはコマンドの作成モードで表示できます |  フラグはコマンドの編集モードで表示できます | 
|  フラグはコマンドの照会モードで表示できます |  コマンド内でフラグを複数回使用できます。 | 
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;