1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/node_modules/three/examples/jsm/nodes/misc/NormalMapNode.d.ts
2023-12-11 11:59:56 -03:00

21 lines
492 B
TypeScript

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;
}
}