123456789101112131415161718192021222324252627282930313233343536373839 |
- import { SelectInput, Element } from '../../libs/flow.module.js';
- import { BaseNode } from '../core/BaseNode.js';
- import { SplitNode, UniformNode } from 'three/nodes';
- const NULL_VALUE = new UniformNode( 0 );
- export class SplitEditor extends BaseNode {
- constructor() {
- const node = new SplitNode( NULL_VALUE, 'x' );
- super( 'Split', 1, node, 175 );
- const componentsField = new SelectInput( [
- { name: 'X | R', value: 'x' },
- { name: 'Y | G', value: 'y' },
- { name: 'Z | B', value: 'z' },
- { name: 'W | A', value: 'w' }
- ], node.components ).onChange( () => {
- node.components = componentsField.getValue();
- this.invalidate();
- } );
- const componentsElement = new Element().add( componentsField ).setInput( 1 )
- .onConnect( () => {
- node.node = componentsElement.getLinkedObject() || NULL_VALUE;
- } );
- this.add( componentsElement );
- }
- }
|