1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { LabelElement } from '../../libs/flow.module.js';
- import { BaseNode } from '../core/BaseNode.js';
- import { MathNode, UniformNode } from 'three/nodes';
- const NULL_VALUE = new UniformNode( 0 );
- const ONE_VALUE = new UniformNode( 1 );
- export class BlendEditor extends BaseNode {
- constructor() {
- const node = new MathNode( MathNode.MIX, NULL_VALUE, NULL_VALUE, ONE_VALUE );
- super( 'Blend', 3, node, 200 );
- const aElement = new LabelElement( 'Base' ).setInput( 3 );
- const bElement = new LabelElement( 'Blend' ).setInput( 3 );
- const cElement = new LabelElement( 'Opacity' ).setInput( 1 );
- aElement.onConnect( () => {
- node.aNode = aElement.getLinkedObject() || NULL_VALUE;
- } );
- bElement.onConnect( () => {
- node.bNode = bElement.getLinkedObject() || NULL_VALUE;
- } );
- cElement.onConnect( () => {
- node.cNode = cElement.getLinkedObject() || ONE_VALUE;
- } );
- this.add( aElement )
- .add( bElement )
- .add( cElement );
- }
- }
|