19 lines
263 B
JavaScript
19 lines
263 B
JavaScript
import { Lighting } from 'three';
|
|
import { tiledLights } from '../tsl/lighting/TiledLightsNode.js';
|
|
|
|
export class TiledLighting extends Lighting {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
createNode( lights = [] ) {
|
|
|
|
return tiledLights().setLights( lights );
|
|
|
|
}
|
|
|
|
}
|