threejs-textures

Installation
SKILL.md

Three.js Textures

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,
});

Texture Loading

Related skills

More from ggprompts/my-plugins

Installs
2
GitHub Stars
3
First Seen
Mar 14, 2026