Cesium-Examples/three/examples/jsm/nodes/lighting/LightingNode.js
2025-03-11 17:51:04 +08:00

22 lines
268 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 );