123456789101112131415161718192021222324252627 |
- import { Node } from '../core/Node';
- import { NodeMaterial } from './NodeMaterial';
- export class StandardNodeMaterial extends NodeMaterial {
- constructor();
- color: Node;
- alpha: Node;
- roughness: Node;
- metalness: Node;
- reflectivity: Node;
- clearcoat: Node;
- clearcoatRoughness: Node;
- clearcoatNormal: Node;
- normal: Node;
- emissive: Node;
- ambient: Node;
- light: Node;
- shadow: Node;
- ao: Node;
- environment: Node;
- mask: Node;
- position: Node;
- sheen: Node;
- }
|