移動先: 概要 戻り値 関連項目. フラグ. MEL 例.
isConnected [-ignoreUnitConversion]
string string
isConnected は 「元に戻す」が可能、「照会」が不可能、「編集」が不可能 です。
isConnected コマンドは、ディペンデンシー グラフで 2 つのプラグがコネクトされているかどうかをチェックするために使用されます。コネクトされていない場合の戻り値は false、コネクトされている場合は true になります。
先頭文字列にはコネクションのチェック対象となるソース プラグを指定します。
2 番目の文字列にはコネクションのチェック対象となる目的プラグを指定します。
boolean | 2 つのプラグはコネクトされていますか? |
connectAttr, connectionInfo, listConnections
ignoreUnitConversion
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
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 //