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.
24 lines
312 B
24 lines
312 B
2 years ago
|
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;
|