| コマンド (Python) |
MEL バージョン |
colorManagementCatalog |
カテゴリ内: 一般 |
ジャンプ先: 概要. 戻り値. キーワード. フラグ. Python 例.
colorManagementCatalog([addTransform=string], [editUserTransformPath=string], [listSupportedExtensions=boolean], [listTransformConnections=boolean], [path=string], [queryUserTransformPath=boolean], [removeTransform=string], [transformConnection=string], [type=string])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
colorManagementCatalog は、取り消し不可能、照会不可能、および編集不可能です。
この取り消し不能なアクションは、オートデスクのネイティブ カラー トランスフォーム カタログからカスタム カラー トランスフォームの追加と除去を実行します。カタログにカスタム カラー トランスフォームが追加されると、それらは組み込みのオートデスク ネイティブ カラー トランスフォームと同様の方法で使用できます。
なし
color, management
addTransform, editUserTransformPath, listSupportedExtensions, listTransformConnections, path, queryUserTransformPath, removeTransform, transformConnection, type
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。
|
import maya.cmds as cmds
cmds.colorManagementCatalog(addTransform='My Custom Viewing LUT', type='view', path='/path/to/myCustomViewingLUT.lut', colorSpaceName='ACES')
cmds.colorManagementCatalog(removeTransform='My Custom Viewing LUT', type='view')
cmds.colorManagementCatalog(listTransformConnections=True, type='view')
cmds.colorManagementCatalog(editUserTransformPath='/path/transforms')