ジャンプ先: 概要. 戻り値. 関連項目. フラグ. MEL 例.
isConnected [-ignoreUnitConversion] string
string
isConnected は 「元に戻す」が可能、「照会」が不可能、「編集」が不可能 です。
isConnected コマンドは、ディペンデンシー グラフで 2 つのプラグがコネクトされているかどうかをチェックするために使用されます。コネクトされていない場合の戻り値は false、コネクトされている場合は true になります。先頭文字列にはコネクションのチェック対象となるソース プラグを指定します。| boolean | 2 つのプラグはコネクトされていますか? |
| ロング ネーム(ショート ネーム) | 引数型 | プロパティ | ||
|---|---|---|---|---|
-ignoreUnitConversion(-iuc) |
||||
|
||||
sphere -n jupiter; sphere -n io; connectAttr jupiter.ty io.ty; // Are the two "tx" attributes on transform1 and transform2 connected? isConnected jupiter.tx io.tx; // Result: 0 // // Are the two "ty" attributes on transform1 and transform2 connected? isConnected jupiter.ty io.ty; // Result: 1 //