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.
26 lines
512 B
26 lines
512 B
2 years ago
|
import { SelectInput, LabelElement } from '../../libs/flow.module.js';
|
||
|
import { BaseNode } from '../core/BaseNode.js';
|
||
|
import { UVNode } from 'three/nodes';
|
||
|
|
||
|
export class UVEditor extends BaseNode {
|
||
|
|
||
|
constructor() {
|
||
|
|
||
|
const node = new UVNode();
|
||
|
|
||
|
super( 'UV', 2, node, 200 );
|
||
|
|
||
|
const optionsField = new SelectInput( [ '1', '2' ], 0 ).onChange( () => {
|
||
|
|
||
|
node.index = Number( optionsField.getValue() );
|
||
|
|
||
|
this.invalidate();
|
||
|
|
||
|
} );
|
||
|
|
||
|
this.add( new LabelElement( 'Channel' ).add( optionsField ) );
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|