Sunlight
Syntax
REAL.SunLight(scene, options)
Options
Parameter | Type | Required |
---|---|---|
target | boolean | No |
intensity | number | No |
shadowEnabled | boolean | No |
diffuse | number | string | BABYLON.Color3 | No |
Example
import * as REAL from "real_api_bbl";
const options = {
intensity: 2,
shadowEnabled: true,
diffuse: new BABYLON.Color3(0.66, 0.56, 0.2)
}
const light = new REAL.SunLight(scene, options);