移動先: 概要 戻り値 関連項目 フラグ MEL の例

概要

disconnectAttr [-nextAvailable] attribute attribute

disconnectAttr は「元に戻す」が可能、「照会」が不可能「編集」が不可能です。

関連付けられた 2 つのアトリビュートが関連付けを解除されます。 1 番目のアトリビュートがソース アトリビュートで、2 番目のアトリビュートが宛先です。

戻り値

string切断されたアトリビュートの名前を含むフレーズ。

関連項目

addAttr, connectAttr, getAttr, listAttr, setAttr

フラグ

nextAvailable
ロング ネーム(ショート ネーム) 引数型 プロパティ
-nextAvailable(-na) create
宛先のマルチアトリビュートで indexMatters が false に設定されている場合は、最初に一致する関連付けが解除されます。インデックスを指定する必要はありません。

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL の例

//    Create a sphere and cone and connect their rotate attribute.
//
string $sph[] = `sphere`;
string $con[] = `cone`;
connectAttr ($sph[0] + ".r") ($con[0] + ".r");

//    Break the connection between the rotate attributes.
//
disconnectAttr ($sph[0] + ".r") ($con[0] + ".r");