From ce1c1fc5039e1a4dc11ad0dcda9be7a7ced33b7c Mon Sep 17 00:00:00 2001
From: Kevin Lee <kevin@infinite-lee.com>
Date: Wed, 11 Apr 2018 15:51:50 -0700
Subject: [PATCH] add nav-mesh-helper component to force calling
 queryCollisionEntities() once an environment has changed

---
 src/components/nav-mesh-helper.js | 16 ++++++++++++++++
 src/hub.html                      |  2 +-
 src/hub.js                        |  2 ++
 3 files changed, 19 insertions(+), 1 deletion(-)
 create mode 100644 src/components/nav-mesh-helper.js

diff --git a/src/components/nav-mesh-helper.js b/src/components/nav-mesh-helper.js
new file mode 100644
index 000000000..2e0707668
--- /dev/null
+++ b/src/components/nav-mesh-helper.js
@@ -0,0 +1,16 @@
+AFRAME.registerComponent("nav-mesh-helper", {
+  schema: {
+    teleportControls: { type: "selectorAll", default: "[teleport-controls]" }
+  },
+
+  init: function() {
+    const teleportControls = this.data.teleportControls;
+    this.el.addEventListener("model-loaded", () => {
+      if (!teleportControls) return;
+
+      for (let i = 0; i < teleportControls.length; i++) {
+        teleportControls[i].components["teleport-controls"].queryCollisionEntities();
+      }
+    });
+  }
+});
diff --git a/src/hub.html b/src/hub.html
index d8f1252d6..0ad99accd 100644
--- a/src/hub.html
+++ b/src/hub.html
@@ -277,7 +277,7 @@
         ></a-entity>
 
         <!-- Environment -->
-        <a-entity id="environment-root" position="0 0 0"></a-entity>
+        <a-entity id="environment-root" position="0 0 0" nav-mesh-helper></a-entity>
 
         <a-entity
             id="skybox"
diff --git a/src/hub.js b/src/hub.js
index fc8436499..7a5df31f5 100644
--- a/src/hub.js
+++ b/src/hub.js
@@ -77,6 +77,8 @@ import "./components/super-spawner";
 import "./components/super-cursor";
 import "./components/event-repeater";
 
+import "./components/nav-mesh-helper";
+
 import registerNetworkSchemas from "./network-schemas";
 import { inGameActions, config as inputConfig } from "./input-mappings";
 import registerTelemetry from "./telemetry";
-- 
GitLab