移動先: 概要 戻り値 関連項目. フラグ. MEL 例.
spotLight [-coneAngle angle] [-decayRate int] [-discRadius linear] [-dropOff float] [-intensity float] [-name string] [-penumbra angle] [-rgb float float float] [-shadowColor float float float] [-shadowDither float] [-shadowSamples int] [-softShadow boolean] [-useRayTraceShadows boolean]
spotLight は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
spotLight コマンドは、既存のスポット ライトのパラメータを編集したり、
新しいスポット ライトを作成したりするために使用します。デフォルト動作は、新しいスポットライトの作成です。
戻り値の型は照会モードでは照会フラグが基になります。
ambientLight, directionalLight, exclusiveLightCheckBox, lightList, lightListEditor, lightListPanel, lightlink, pointLight, spotLightPreviewPort
coneAngle, decayRate, discRadius, dropOff, intensity, name, penumbra, rgb, shadowColor, shadowDither, shadowSamples, softShadow, useRayTraceShadows
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// Create a spot light
string $light = `spotLight -coneAngle 45`;
// Change the cone angle value
spotLight -e -coneAngle 33 $light;
// Query it
spotLight -q -coneAngle $light;
// Result:33//