three
Version:
JavaScript 3D library
27 lines (15 loc) • 383 B
JavaScript
import { Node } from 'three/nodes';
class SlotNode extends Node {
constructor( params ) {
super( params.nodeType );
this.node = null;
this.source = null;
this.target = null;
this.inclusionType = 'replace';
Object.assign( this, params );
}
generate( builder ) {
return this.node.build( builder, this.getNodeType( builder ) );
}
}
export default SlotNode;