Skip to content

Commit

Permalink
Use white light for the scene
Browse files Browse the repository at this point in the history
  • Loading branch information
Abbondanzo committed May 16, 2019
1 parent 49ac064 commit 0503071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builders/scene/addLighting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AmbientLight, HemisphereLight, Scene } from "three"

export const addLighting = (scene: Scene) => {
// Ambient light
scene.add(new AmbientLight(0x444444))
scene.add(new AmbientLight(0xffffff))

// Hemisphere light
scene.add(new HemisphereLight(0xffffbb, 0x080820, 1))
Expand Down

0 comments on commit 0503071

Please sign in to comment.