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.
23 lines
312 B
23 lines
312 B
import UniformNode from './UniformNode.js';
|
|
|
|
class ArrayUniformNode extends UniformNode {
|
|
|
|
constructor( nodes = [] ) {
|
|
|
|
super();
|
|
|
|
this.isArrayUniformNode = true;
|
|
|
|
this.nodes = nodes;
|
|
|
|
}
|
|
|
|
getNodeType( builder ) {
|
|
|
|
return this.nodes[ 0 ].getNodeType( builder );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default ArrayUniformNode;
|
|
|