📖 INDEX
LOADING ENGINE...
MeshPhysicalMaterial
THREE.JS REFERENCE // meshphysicalmaterial
An extension of the MeshStandardMaterial, providing more advanced PBR rendering properties.
Syntax
const material = new THREE.MeshPhysicalMaterial({ clearcoat: 1.0, clearcoatRoughness: 0.1 });Examples
Example 01Basic Usage
const material = new THREE.MeshPhysicalMaterial({ clearcoat: 1.0, clearcoatRoughness: 0.1 });Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.