React Three Fiber Materials Quick Start Material Types Overview | Material | Use Case | Lighting | |----------|----------|----------| | meshBasicMaterial | Unlit, flat colors | No | | meshLambertMaterial | Matte surfaces, fast | Yes (diffuse) | | meshPhongMaterial | Shiny, specular | Yes | | meshStandardMaterial | PBR, realistic | Yes (PBR) | | meshPhysicalMaterial | Advanced PBR | Yes (PBR+) | | meshToonMaterial | Cel-shaded | Yes (toon) | | meshNormalMaterial | Debug normals | No | | shaderMaterial | Custom GLSL | Custom | meshBasicMaterial No lighting calculations. Always visible, fast. me…