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

Installs
3.7K
GitHub Stars
2.4K
First Seen
Jan 20, 2026
threejs-lighting — cloudai-x/threejs-skills