A directional light source within a View.

  • Illuminates all objects equally from a given direction.
  • Has an emission direction vector in DirLight.dir, but no position.
  • Defined in either World or View coordinate space. When in World-space, DirLight.dir is relative to the World coordinate system, and will appear to move as the Camera moves. When in View-space, DirLight.dir is relative to the View coordinate system, and will behave as if fixed to the viewer's head.
  • AmbientLights, DirLights and PointLights are registered by their Component.id on View.lights.

Hierarchy (View Summary)

Constructors

Properties

destroyed: boolean

True once this Component has been destroyed.

Don't use this Component if this is true.

dirty: boolean
id: string

ID of this DirLight, unique within the View.

view: View

The View to which this DirLight belongs.

Accessors

  • get intensity(): number
  • Gets the intensity of this DirLight.

    Default value is 1.0 for maximum intensity.

    Returns number

    The DirLight's intensity.

  • set intensity(intensity: number): void
  • Sets the intensity of this DirLight.

    Default intensity is 1.0 for maximum intensity.

    Parameters

    • intensity: number

      The DirLight's intensity

    Returns void

Methods

  • Protected

    Logs an error for this component to the JavaScript console.

    The console message will have this format: [ERROR] [<component type> =<component id>: <message>

    Parameters

    • message: string

      The error message to log

    Returns void

  • Protected

    Logs a message for this component.

    The message will have this format: [LOG] [<component type> <component id>: <message>

    Parameters

    • message: string

      The message to log

    Returns void

  • Protected

    Logs a warning for this component to the JavaScript console.

    The console message will have this format: [WARN] [<component type> =<component id>: <message>

    Parameters

    • message: string

      The warning message to log

    Returns void

Events

onDestroyed: EventEmitter<Component, null>

Emits an event when the Component has been destroyed.