1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/node_modules/three/examples/jsm/nodes/materials/MeshStandardNodeMaterial.d.ts
2023-12-11 11:59:56 -03:00

23 lines
651 B
TypeScript

import { Color } from '../../../../src/math/Color';
import { Texture } from '../../../../src/textures/Texture';
import { CubeTexture } from '../../../../src/textures/CubeTexture';
import { Vector2 } from '../../../../src/math/Vector2';
import { Node } from '../core/Node';
import { NodeMaterial } from './NodeMaterial';
export class MeshStandardNodeMaterial extends NodeMaterial {
constructor();
color: Color | Node;
roughness: number | Node;
metalness: number | Node;
map: Texture | Node;
normalMap: Texture | Node;
normalScale: Vector2 | Node;
metalnessMap: Texture | Node;
roughnessMap: Texture | Node;
envMap: CubeTexture | Node;
}