UNPKG

three

Version:

JavaScript 3D library

22 lines (15 loc) 492 B
import { TempNode } from '../core/TempNode'; import { FunctionNode } from '../core/FunctionNode'; import { TextureNode } from '../inputs/TextureNode'; import { Vector2Node } from '../inputs/Vector2Node'; export class NormalMapNode extends TempNode { constructor( value: TextureNode, scale?: Vector2Node ); value: TextureNode; scale: Vector2Node; toNormalMap: boolean; nodeType: string; copy( source: NormalMapNode ): this; static Nodes: { perturbNormal2Arb: FunctionNode; } }