MCP 3D Printer Server

by DMontgomery40
Verified
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 ); } }