MatcapUVEditor.js 240 B

1234567891011121314
  1. import { BaseNode } from '../core/BaseNode.js';
  2. import { MatcapUVNode } from 'three/nodes';
  3. export class MatcapUVEditor extends BaseNode {
  4. constructor() {
  5. const node = new MatcapUVNode();
  6. super( 'Matcap UV', 2, node, 200 );
  7. }
  8. }