移動先: 概要 戻り値 関連項目. フラグ. Python 例.
disconnectAttr(
attribute attribute
, [nextAvailable=boolean])
注意: オブジェクト名や引数を表す文字列はカンマで区切ります。これは概要には示されていません。
disconnectAttr は 「元に戻す」が可能、「照会」が不可能、「編集」が不可能 です。
関連付けられた 2 つのアトリビュートが関連付けを解除されます。
1 番目のアトリビュートがソース アトリビュートで、2 番目のアトリビュートが宛先です。
string | 切断されたアトリビュートの名前を含むフレーズ。 |
addAttr, connectAttr, getAttr, listAttr, setAttr
nextAvailable
ロング ネーム(ショート ネーム) |
引数型 |
プロパティ |
nextAvailable(na)
|
boolean
|
|
|
宛先のマルチアトリビュートで indexMatters が false に設定されている場合は、最初に一致する関連付けが解除されます。インデックスを指定する必要はありません。
|
|
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: タプルまたはリストとして渡された複数の引数を持てるフラグ
|
import maya.cmds as cmds
# Create a sphere and cone and connect their rotate attribute.
#
sph = cmds.sphere()
con = cmds.cone()
sphereR = '%s.r' % sph[0]
coneR = '%s.r' % con[0]
cmds.connectAttr(sphereR, coneR)
# Break the connection between the rotate attributes.
#
cmds.disconnectAttr(sphereR, coneR)