Skip to content

Instantly share code, notes, and snippets.

@patkap1994
Created May 19, 2022 08:53
const ambient = new THREE.AmbientLight(0x404040, 5)
const point = new THREE.PointLight(0xE4FF00, 1, 10)
point.position.set(3, 3, 2)
scene.add(ambient)
scene.add(point)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment