First visible map

This commit is contained in:
AlxAI 2025-03-03 23:13:00 -08:00
parent 1f8ac5ae20
commit 0b562dc2ac
1089 changed files with 313044 additions and 69 deletions

View file

@ -0,0 +1,18 @@
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 );
}
}