mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
23 lines
651 B
TypeScript
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;
|
|
|
|
}
|