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
2
GitHub Stars
4
First Seen
Mar 14, 2026
threejs-materials — ggprompts/my-plugins