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

Related skills

More from ggprompts/my-plugins

Installs
2
GitHub Stars
3
First Seen
Mar 14, 2026