Sunlight Component options

SunlightOptions

2024.8.12

yisky

interface SunlightOptions {
    castShadow?: boolean;
    color?: ColorRepresentation;
    direction?: Vector3;
    height?: number;
    intensity?: number;
    shadow?: LightShadowOptions;
}

Properties

castShadow?: boolean

Whether to cast shadow

SunlightOptions

color?: ColorRepresentation

Color

SunlightOptions

direction?: Vector3

Direction

SunlightOptions

height?: number

Height

SunlightOptions

intensity?: number

Intensity

SunlightOptions

shadow?: LightShadowOptions

Shadow options

SunlightOptions