1234567891011121314151617181920212223242526272829303132333435 |
- class NodeBuilderState {
- constructor( vertexShader, fragmentShader, computeShader, nodeAttributes, bindings, updateNodes, updateBeforeNodes ) {
- this.vertexShader = vertexShader;
- this.fragmentShader = fragmentShader;
- this.computeShader = computeShader;
- this.nodeAttributes = nodeAttributes;
- this.bindings = bindings;
- this.updateNodes = updateNodes;
- this.updateBeforeNodes = updateBeforeNodes;
- this.usedTimes = 0;
- }
- createBindings() {
- const bindingsArray = [];
- for ( const binding of this.bindings ) {
- bindingsArray.push( binding.clone() );
- }
- return bindingsArray;
- }
- }
- export default NodeBuilderState;
|