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

23 lines
536 B
TypeScript

import { TempNode } from '../core/TempNode';
import { FloatNode } from '../inputs/FloatNode';
import { FunctionNode } from '../core/FunctionNode';
import { TextureNode } from '../inputs/TextureNode';
export class BumpMapNode extends TempNode {
constructor( value: TextureNode, scale?: FloatNode );
value: TextureNode;
scale: FloatNode;
toNormalMap: boolean;
nodeType: string;
copy( source: BumpMapNode ): this;
static Nodes: {
dHdxy_fwd: FunctionNode;
perturbNormalArb: FunctionNode;
bumpToNormal: FunctionNode;
}
}