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

Related skills

More from toilahuongg/shopify-agents-kit

Installs
7
GitHub Stars
9
First Seen
Jan 30, 2026