NormalMapNode.d.ts 492 B

123456789101112131415161718192021
  1. import { TempNode } from '../core/TempNode';
  2. import { FunctionNode } from '../core/FunctionNode';
  3. import { TextureNode } from '../inputs/TextureNode';
  4. import { Vector2Node } from '../inputs/Vector2Node';
  5. export class NormalMapNode extends TempNode {
  6. constructor( value: TextureNode, scale?: Vector2Node );
  7. value: TextureNode;
  8. scale: Vector2Node;
  9. toNormalMap: boolean;
  10. nodeType: string;
  11. copy( source: NormalMapNode ): this;
  12. static Nodes: {
  13. perturbNormal2Arb: FunctionNode;
  14. }
  15. }