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.
 
 
 
 
 

27 lines
516 B

import { LabelElement } from '../../libs/flow.module.js';
import { BaseNode } from '../core/BaseNode.js';
import { CheckerNode, UVNode } from 'three/nodes';
const defaultUV = new UVNode();
export class CheckerEditor extends BaseNode {
constructor() {
const node = new CheckerNode( defaultUV );
super( 'Checker', 1, node, 200 );
const field = new LabelElement( 'UV' ).setInput( 2 );
field.onConnect( () => {
node.uvNode = field.getLinkedObject() || defaultUV;
} );
this.add( field );
}
}