threejs-textures

Installation
SKILL.md

Three.js Textures

Iron Law

Always set texture.colorSpace = THREE.SRGBColorSpace for albedo/color maps — omitting this causes washed-out colors in physically-based rendering.

Quick Start

import * as THREE from "three";

// Load texture
const loader = new THREE.TextureLoader();
const texture = loader.load("texture.jpg");
Installs
4
GitHub Stars
34
First Seen
May 21, 2026
threejs-textures — kumaran-is/claude-code-onboarding