移動先: 概要 戻り値 関連項目 フラグ 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 の作成です。

戻り値

stringライト シェイプの名前

戻り値の型は照会モードでは照会フラグが基になります。

関連項目

directionalLight, exclusiveLightCheckBox, lightList, lightListEditor, lightListPanel, lightlink, pointLight, spotLight, spotLightPreviewPort

フラグ

ambientShade, discRadius, intensity, name, rgb, shadowColor, shadowDither, shadowSamples, softShadow, useRayTraceShadows
ロング ネーム(ショート ネーム) 引数型 プロパティ
-ambientShade(-as) float createqueryedit
ambientShade
-discRadius(-drs) linear createqueryedit
ライトの周りのディスクの半径です。
-intensity(-i) float createqueryedit
ライトの輝度です(パーセンテージ表示)。
-rgb(-rgb) float float float createqueryedit
ライトのカラーです(0-1)。
-name(-n) string createqueryedit
ライトの名前を指定します。
-useRayTraceShadows(-rs) boolean createqueryedit
レイ トレース シャドウです。
-shadowColor(-sc) float float float createqueryedit
シャドウ カラーです。
-softShadow(-ss) boolean createqueryedit
ソフト シャドウです。
-shadowSamples(-sh) int createqueryedit
シャドウ サンプルの数です。
-shadowDither(-sd) float createqueryedit
シャドウをディザリングします。

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL の例

// 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 //