32 lines
474 B
JavaScript
32 lines
474 B
JavaScript
import Node from '../core/Node.js';
|
|
import MathNode from '../math/MathNode.js';
|
|
|
|
class FogNode extends Node {
|
|
|
|
constructor( colorNode, factorNode ) {
|
|
|
|
super( 'float' );
|
|
|
|
this.isFogNode = true;
|
|
|
|
this.colorNode = colorNode;
|
|
this.factorNode = factorNode;
|
|
|
|
}
|
|
|
|
mix( outputNode ) {
|
|
|
|
return new MathNode( MathNode.MIX, outputNode, this.colorNode, this );
|
|
|
|
}
|
|
|
|
generate( builder ) {
|
|
|
|
return this.factorNode.build( builder, 'float' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default FogNode;
|