UNPKG

playcanvas

Version:

Open-source WebGL/WebGPU 3D engine for the web

11 lines (10 loc) 257 B
/** * A lighting cube represented by 6 colors, one per cube direction. Use for simple lighting on the * particle system. * * @ignore */ export class LightCube { colors: Float32Array<ArrayBuffer>; update(ambientLight: any, lights: any): void; }