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 toilahuongg/shopify-agents-kit

Installs
7
GitHub Stars
9
First Seen
Jan 30, 2026