Class LightBuilder

LightBuilder class

Represents the base class light object.

public abstract class LightBuilder : BaseBuilder

Properties

NameDescription
Color { get; set; }Gets or sets the RGB value for light’s color in linear space.
Extras { get; set; }Gets or sets the custom data of this object.
Intensity { get; set; }Gets or sets the Brightness of light in. The units that this is defined in depend on the type of light. Point and spot lights use luminous intensity in candela (lm/sr) while directional lights use illuminance in lux (lm/m2)
Name { get; set; }Gets or sets the display text name, or null.
static LocalDirection { get; }

Methods

NameDescription
abstract Clone()

Other Members

NameDescription
class Directional
class Point
class Spot

Remarks

Derived types are: - Directional - Point - Spot

See Also