From 67de32b0b1997f7b57e14e73215dec75b48c01de Mon Sep 17 00:00:00 2001
From: Kevin Lee <kevin@infinite-lee.com>
Date: Thu, 12 Apr 2018 16:50:13 -0700
Subject: [PATCH] remove the hardcoded floor and table static-bodies and
 instead, put a static-body on tyhe environment-root that gets shape
 components inflated under it.

---
 src/hub.html | 25 +++++++------------------
 1 file changed, 7 insertions(+), 18 deletions(-)

diff --git a/src/hub.html b/src/hub.html
index 0575e5b01..75d63f5c0 100644
--- a/src/hub.html
+++ b/src/hub.html
@@ -275,7 +275,13 @@
         ></a-entity>
 
         <!-- Environment -->
-        <a-entity id="environment-root" position="0 0 0" nav-mesh-helper></a-entity>
+        <a-entity 
+            id="environment-root" 
+            position="0 0 0" 
+            nav-mesh-helper
+            static-body="shape: none;"
+            class="collidable"
+        ></a-entity>
 
         <a-entity
             id="skybox"
@@ -294,23 +300,6 @@
             xr="ar: false"
         ></a-entity>
 
-        <a-cylinder
-            position="0 0.45 0"
-            material="visible: false"
-            height="1" radius="3.1"
-            segments-radial="12"
-            static-body
-            class="collidable"
-        ></a-cylinder>
-
-        <a-plane 
-            material="visible: false" 
-            rotation="-90 0 0" 
-            height="35" 
-            width="35" 
-            static-body 
-            class="collidable"
-        ></a-plane> 
     </a-scene>
 
     <div id="ui-root"></div>
-- 
GitLab