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.
49 lines
1.1 KiB
49 lines
1.1 KiB
import { SelectInput, Element, LabelElement } from '../../libs/flow.module.js';
|
|
import { BaseNode } from '../core/BaseNode.js';
|
|
import { NormalMapNode, ConstNode } from 'three/nodes';
|
|
import { TangentSpaceNormalMap, ObjectSpaceNormalMap } from 'three';
|
|
|
|
const nullValue = new ConstNode( 0 );
|
|
|
|
export class NormalMapEditor extends BaseNode {
|
|
|
|
constructor() {
|
|
|
|
const node = new NormalMapNode( nullValue );
|
|
|
|
super( 'Normal Map', 3, node, 175 );
|
|
|
|
const source = new LabelElement( 'Source' ).setInput( 3 ).onConnect( () => {
|
|
|
|
node.node = source.getLinkedObject() || nullValue;
|
|
|
|
this.invalidate();
|
|
|
|
} );
|
|
|
|
const scale = new LabelElement( 'Scale' ).setInput( 3 ).onConnect( () => {
|
|
|
|
node.scaleNode = scale.getLinkedObject();
|
|
|
|
this.invalidate();
|
|
|
|
} );
|
|
|
|
const optionsField = new SelectInput( [
|
|
{ name: 'Tangent Space', value: TangentSpaceNormalMap },
|
|
{ name: 'Object Space', value: ObjectSpaceNormalMap }
|
|
], TangentSpaceNormalMap ).onChange( () => {
|
|
|
|
node.normalMapType = Number( optionsField.getValue() );
|
|
|
|
this.invalidate();
|
|
|
|
} );
|
|
|
|
this.add( new Element().add( optionsField ) )
|
|
.add( source )
|
|
.add( scale );
|
|
|
|
}
|
|
|
|
}
|
|
|