threejs-lighting

Installation
SKILL.md

Three.js Lighting

Quick Start

import * as THREE from "three";

// Basic lighting setup
const ambientLight = new THREE.AmbientLight(0xffffff, 0.5);
scene.add(ambientLight);

const directionalLight = new THREE.DirectionalLight(0xffffff, 1);
directionalLight.position.set(5, 5, 5);
scene.add(directionalLight);

Light Types Overview

| Light | Description | Shadow Support | Cost |

Related skills

More from toilahuongg/shopify-agents-kit

Installs
7
GitHub Stars
9
First Seen
Jan 30, 2026