node-ejs-renderer/node_modules/three/examples/jsm/nodes/lighting/LightingNode.js

22 lines
284 B
JavaScript
Raw Permalink Normal View History

2024-06-09 13:55:01 -04:00
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 );