From 0503071439d9825d2263a78cb36e18299f81ed59 Mon Sep 17 00:00:00 2001 From: Abbondanzo Date: Wed, 15 May 2019 21:44:22 -0400 Subject: [PATCH] Use white light for the scene --- src/builders/scene/addLighting.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builders/scene/addLighting.ts b/src/builders/scene/addLighting.ts index 8af039d..932fcc5 100644 --- a/src/builders/scene/addLighting.ts +++ b/src/builders/scene/addLighting.ts @@ -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))