threejs-materials
Installation
SKILL.md
Three.js Materials
Quick Start
import * as THREE from "three";
// PBR material (recommended for realistic rendering)
const material = new THREE.MeshStandardMaterial({
color: 0x00ff00,
roughness: 0.5,
metalness: 0.5,
});
const mesh = new THREE.Mesh(geometry, material);
Material Types Overview
Installs
10.2K
Repository
cloudai-x/threejs-skillsGitHub Stars
3.4K
First Seen
Jan 20, 2026
Security Audits