ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
ambientLight [-ambientShade float] [-discRadius linear] [-intensity float] [-name string] [-rgb float float float] [-shadowColor float float float] [-shadowDither float] [-shadowSamples int] [-softShadow boolean] [-useRayTraceShadows boolean]
ambientLight は、取り消し可能、照会可能、および編集可能です。
ambientLight コマンドは、既存の ambientLight のパラメータを編集したり、新しい ambientLight を作成したりします。既定の動作は、新しい ambientLight の作成です。
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
directionalLight, exclusiveLightCheckBox, lightList, lightlink, pointLight, spotLight, spotLightPreviewPort
ambientShade, discRadius, intensity, name, rgb, shadowColor, shadowDither, shadowSamples, softShadow, useRayTraceShadows
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// Create an ambient light
string $light = `ambientLight -intensity 0.8`;
// Change the light intensity
ambientLight -e -intensity 0.5 $light;
// Query it
ambientLight -q -intensity $light;
// Result:0.5 //