Spaces:
Running
Running
File size: 270 Bytes
a28eca3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { Lighting } from 'three/webgpu';
import { tiledLights } from '../tsl/lighting/TiledLightsNode.js';
export class TiledLighting extends Lighting {
constructor() {
super();
}
createNode( lights = [] ) {
return tiledLights().setLights( lights );
}
}
|