From ee109b07cb29777b34d3db41f947a298804111f0 Mon Sep 17 00:00:00 2001
From: Robert Long <robert@robertlong.me>
Date: Thu, 8 Mar 2018 18:42:11 -0800
Subject: [PATCH] Remove console log and add directional light.

---
 src/room.html | 3 +++
 src/room.js   | 1 -
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/room.html b/src/room.html
index cb0d1520a..ec10608d3 100644
--- a/src/room.html
+++ b/src/room.html
@@ -156,6 +156,9 @@
             </a-gltf-entity>
         </a-entity>
 
+        <!-- Lights -->
+        <a-entity light="type: directional; color: #F9FFCE; intensity: 0.6" position="0.002 5.231 -15.3"></a-entity>
+
         <!-- Environment -->
         <a-gltf-entity
             id="meeting-space"
diff --git a/src/room.js b/src/room.js
index aad972763..880ec8860 100644
--- a/src/room.js
+++ b/src/room.js
@@ -47,7 +47,6 @@ const qs = queryString.parse(location.search);
 const isMobile = AFRAME.utils.device.isMobile();
 
 if (qs.quality) {
-  console.log(qs.quality);
   AFRAME.quality = qs.quality;
 } else {
   AFRAME.quality = isMobile ? "low" : "high";
-- 
GitLab