diff --git a/src/room.js b/src/room.js index 1ca8d4f10d60ee8153a823be513fd06a9b0dddaf..16b3eadc2ed8f3879fae7296ec5c5d1696465da9 100644 --- a/src/room.js +++ b/src/room.js @@ -119,6 +119,10 @@ async function exitScene() { if (NAF.connection && NAF.connection.adapter) { NAF.connection.disconnect(); } + + const scene = document.querySelector("a-scene"); + scene.renderer.animate(null); // Stop animation loop, TODO A-Frame should do this + document.body.removeChild(scene); } async function enterScene(mediaStream) {