Base parameters used to create a Light.

interface LightBaseParams {
    color?: Vec3;
    intensity?: number;
}

Hierarchy (view full)

Properties

Properties

color?: Vec3

The Light color. Default to Vec3(1).

intensity?: number

The Light intensity. Default to 1.