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