跳到主要内容

点光源

语法

REAL.PointLight(scene, options)

选项

参数类型必填
decaynumber
rangenumber
intensitynumber
shadowEnabledboolean
diffusenumber | string | BABYLON.Color3

示例

import * as REAL from "real_api_bbl";

const options = {
range: 20,
intensity: 2,
shadowEnabled: true,
diffuse: new BABYLON.Color3(0.66, 0.56, 0.2)
}
const light = new REAL.PointLight(scene, options);