ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
curveRGBColor [-hueSaturationValue] [-list] [-listNames] [-remove] [-resetToFactory] [-resetToSaved]
curveRGBColor は、取り消し可能、照会可能、および編集不可能です。
このコマンドは、グラフ エディタ(Graph Editor)でカーブを描画するために使用されるカスタム カーブ カラーを作成、変更、除去します。カスタム カーブの名前は単一の文字に相当する「?」ワイルドカードや任意数の文字に相当する「*」を含むことができます。このカラーは UI の一部であって、モデルの保存データの一部ではありません。このコマンドは元に戻せません。
| float[] | HSV フラグの照会から取得される HSV 値 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
displayRGBColor
hueSaturationValue, list, listNames, remove, resetToFactory, resetToSaved
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// Set all "translateX" curves to draw magenta
curveRGBColor "translateX" 1 0 1;
// Set all curves whose names end in "Y" to draw yellow
curveRGBColor "*Y" 1 1 0;
// Remove the custom color for "translateX" curves
// (which will revert to the standard UI color)
curveRGBColor -r "translateX";
// List the currently defined custom curve colors
curveRGBColor -list;