jbilcke-hf's picture
jbilcke-hf HF Staff
Upload 372 files
a28eca3 verified
raw
history blame contribute delete
270 Bytes
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 );
}
}