ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
containerPublish [-bindNode string string] [-bindTemplateStandins] [-inConnections] [-mergeShared] [-outConnections] [-publishNode string string] [-unbindNode string] [-unpublishNode string]
containerPublish は、取り消し可能、照会可能、および編集可能です。
これはコンテナ コマンドに付属するアクセサリ コマンドで、コンテナに対して高度なパブリッシュ操作を行う場合に使用します。たとえば、コンテナに「publishConnections」フラグを付けるとすべての接続がパブリッシュされますが、このコマンドを使用すれば入力や出力のみパブリッシュしたり、共有されている入力をパブリッシュする前に単一アトリビュートに折り畳んだりすることができます。
なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
publish, container
container, containerProxy, containerTemplate
bindNode, bindTemplateStandins, inConnections, mergeShared, outConnections, publishNode, unbindNode, unpublishNode
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// publish any unpublished inconnections and merge the shared inputs
//
containerPublish -inConnections -mergeShared container1;
// add a published name 'mainShader' of type 'objectSet'
//
containerPublish -publishNode "mainShadingSet" "objectSet" container1;
// bind a shading group to the published name
//
containerPublish -bindNode "mainShadingSet" blinn1SG container1;
// query what is bound
//
container -q -bindNode container1;
// unbind the shading group
//
containerPublish -unbindNode "mainShadingSet" container1;
// create and bind dynamic attributes for unbound template attributes
//
containerPublish -bindTemplateStandins container1;