Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / lighting / LightingNode.js
@zhangdeliang zhangdeliang on 21 Jun 219 bytes update
import Node from '../core/Node.js';

class LightingNode extends Node {

	constructor() {

		super( 'vec3' );

	}

	generate( /*builder*/ ) {

		console.warn( 'Abstract function.' );

	}

}

export default LightingNode;