You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
383 B

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;