threejs-textures

Installation
SKILL.md

Three.js Textures

When to Use

  • You need to load, configure, or optimize textures in Three.js.
  • The task involves UV mapping, texture settings, cubemaps, environment maps, or HDR texture workflows.
  • You are working on surface detail and material inputs rather than geometry or animation.

Quick Start

import * as THREE from "three";

// Load texture
const loader = new THREE.TextureLoader();
const texture = loader.load("texture.jpg");

// Apply to material
const material = new THREE.MeshStandardMaterial({
  map: texture,
Related skills
Installs
71
GitHub Stars
37.2K
First Seen
Mar 6, 2026