From a1b4a9c454d11db5fae0f7ccfff1b69e8feaed2f Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Tue, 5 Dec 2017 11:20:06 +0100 Subject: [PATCH] update material --- src/interface/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface/utils.js b/src/interface/utils.js index 1383028..2247d80 100644 --- a/src/interface/utils.js +++ b/src/interface/utils.js @@ -39,7 +39,7 @@ export function createScene(canvas, props, state) { const light = new THREE.AmbientLight(0x656565); scene.add(light); - const material = new THREE.MeshPhongMaterial({ color: 0x2194ce, side: THREE.DoubleSide, specular: 0xaaaaaa, shininess: 10 }); + const material = new THREE.MeshPhongMaterial({ color: 0x2194ce, side: THREE.DoubleSide, specular: 0xc5c5c5, shininess: 5 }); const mesh = new THREE.Mesh(geometry, material); placeOnGround(mesh); scene.add(mesh);