node-ejs-renderer/node_modules/three/examples/jsm/renderers/common/nodes/NodeBuilderState.js

45 lines
821 B
JavaScript
Raw Normal View History

2024-06-09 13:55:01 -04:00
class NodeBuilderState {
constructor( vertexShader, fragmentShader, computeShader, nodeAttributes, bindings, updateNodes, updateBeforeNodes, transforms = [] ) {
this.vertexShader = vertexShader;
this.fragmentShader = fragmentShader;
this.computeShader = computeShader;
this.transforms = transforms;
this.nodeAttributes = nodeAttributes;
this.bindings = bindings;
this.updateNodes = updateNodes;
this.updateBeforeNodes = updateBeforeNodes;
this.usedTimes = 0;
}
createBindings() {
const bindingsArray = [];
for ( const instanceBinding of this.bindings ) {
let binding = instanceBinding;
if ( instanceBinding.shared !== true ) {
binding = instanceBinding.clone();
}
bindingsArray.push( binding );
}
return bindingsArray;
}
}
export default NodeBuilderState;