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.
 
 
 
 
 

23 lines
460 B

import { NumberInput, Element } from '../../libs/flow.module.js';
import { BaseNode } from '../core/BaseNode.js';
import { UniformNode } from 'three/nodes';
export class FloatEditor extends BaseNode {
constructor() {
const node = new UniformNode( 0 );
super( 'Float', 1, node, 150 );
const field = new NumberInput().setTagColor( 'red' ).onChange( () => {
node.value = field.getValue();
} );
this.add( new Element().add( field ) );
}
}