nanobot-voice-interface/frontend/node_modules/three/examples/jsm/nodes/lighting/LightingNode.js
2026-03-06 22:51:19 -05:00

21 lines
284 B
JavaScript

import Node, { addNodeClass } from '../core/Node.js';
class LightingNode extends Node {
constructor() {
super( 'vec3' );
}
generate( /*builder*/ ) {
console.warn( 'Abstract function.' );
}
}
export default LightingNode;
addNodeClass( 'LightingNode', LightingNode );