Vector4Node.js 189 B

123456789101112131415
  1. import InputNode from '../core/InputNode.js';
  2. class Vector4Node extends InputNode {
  3. constructor( value ) {
  4. super( 'vec4' );
  5. this.value = value;
  6. }
  7. }
  8. export default Vector4Node;