Initial commit

This commit is contained in:
ChKendel
2026-01-31 21:50:25 +01:00
commit c65f983229
1088 changed files with 452910 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
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;