Go to: Synopsis. Return value. Related. Flags. MEL examples.
directionalLight [-decayRate int] [-discRadius linear] [-exclusive boolean] [-intensity float] [-name string] [-position linear linear linear] [-rgb float float float] [-rotation angle angle angle] [-shadowColor float float float] [-shadowDither float] [-shadowSamples int] [-softShadow boolean] [-useRayTraceShadows boolean]
directionalLight is undoable, queryable, and editable.
TlightCmd is the base class for other light commands.
TnonAmbientLightCmd is a class that looks like a command but
is not. It is a base class for the extended/nonExtended
lights.
TnonExtendedLightCmd is a base class and not a real command. It is inherited by several
lights: TpointLight, TdirectionalLight, TspotLight etc.
The directionalLight command is used to edit the parameters
of existing directionalLights, or to create new ones. The
default behaviour is to create a new directionallight.
This is the commmand that instantiates an directionalLight
or edits the parameters of an existing one.
TdirectionalLightCmd inherits from TnonExtendedLightCmd
which defines softShadow flags.
See TlightCmd for a global picture of the light commands.
TdirectionalLightCmd behaves like any other command, it
has flags, saves undo information etc. the only slightly
different behaviour is that it calls up to
TnonExtendedLightCmd to complete the functionality of
the command.
double[] | when querying the rgb or shadowColor flags
double when querying the intensity flag
boolean when querying the useRayTraceShadows or exclusive flags
linear[] when querying the position flag
angle[] when querying the rotation flag
string when querying the name flag |
int | rate of light decay, when querying the decayRate flag |
int | Number of shadow samples, when querying the shadowSamples flag
boolean True if soft shadows are enabled, when querying the softShadow flag
float Shadow dithering value, when querying the shadowDither flag
float Disc radius value, when querying the discRadius flag |
string | Light shape name |
In query mode, return type is based on queried flag.
ambientLight, exclusiveLightCheckBox, lightList, lightlink, pointLight, spotLight, spotLightPreviewPort
decayRate, discRadius, exclusive, intensity, name, position, rgb, rotation, shadowColor, shadowDither, shadowSamples, softShadow, useRayTraceShadows
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can be used more than once in a command.
|
// Create a directional light
string $light = `directionalLight -rotation 45 30 15`;
// Change the light intensity
directionalLight -e -intensity 0.5 $light;
// Query it
directionalLight -q -intensity $light;
// Result:0.5//