three
Version:
JavaScript 3D library
28 lines (14 loc) • 302 B
JavaScript
import Node from '../core/Node.js';
class LightingNode extends Node {
static get type() {
return 'LightingNode';
}
constructor() {
super( 'vec3' );
this.isLightingNode = true;
}
generate( /*builder*/ ) {
console.warn( 'Abstract function.' );
}
}
export default LightingNode;