ジャンプ先: 概要. 戻り値.
キーワード. 関連項目.
フラグ. MEL 例.
containerBind [-allNames] [-bindingSet string] [-bindingSetConditions] [-bindingSetList] [-force] [-preview]
containerBind は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
コンテナに対して自動バインド操作を行うコンテナ コマンドに付属するアクセサリ
コマンドです。コンテナのパブリッシュ済みインタフェースは、コネクトされているコンテナ テンプレートに bindingSet
を使用することでバインドできます。
戻り値の型は照会モードでは照会フラグが基になります。
bind, container
container, containerProxy, containerPublish, containerTemplate
allNames, bindingSet, bindingSetConditions, bindingSetList, force, preview
: コマンドの作成モードで使用可能なフラグ |
: コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ |
: 1 つのコマンドで複数回使用可能なフラグ |
// query the template binding sets available for this container
//
containerBind -query -bindingSetList container1;
// attempt to bind published names on the container
// using matching information in the bindingSet specified.
// By default only unbound names are considered.
//
containerBind -bindingSet "MayaBindings" container1;
// Attempt to bind all published names on the container
// using matching information in the bindingSet specified.
// Previously bound names will only be re-bound if the bindingSet
// produces an appropriate match.
//
containerBind -bindingSet "MayaBindings" -allNames container1;
// Forcibly re-bind all published names on the container
// using matching information in the bindingSet specified.
// All previously bound names will be unbound and will only
// be re-bound if the binding set produces an appropriate match.
//
containerBind -bindingSet "MayaBindings" -force -allNames container1;
// preview what the results of a binding operation would be, but do
// not actually perform it.
containerBind -preview -bindingSet "MayaBindings" -force -all container1;