diff --git a/src/hub.js b/src/hub.js index 07f2ddf44a5ee0abbbb9cbc7137a638b1bf9b6cc..7dc526b7dea5a5ceaee6764acf7238bd9778c3e5 100644 --- a/src/hub.js +++ b/src/hub.js @@ -271,7 +271,7 @@ const onReady = async () => { camera.object3D.position.set(cameraPos.x, 2.5, cameraPos.z); } - camera.setAttribute("scene-preview-camera", "positionOnly: true; duration: 30"); + camera.setAttribute("scene-preview-camera", "positionOnly: true; duration: 60"); // Replace renderer with a noop renderer to reduce bot resource usage. if (isBotMode) { diff --git a/src/react-components/ui-root.js b/src/react-components/ui-root.js index a6e0e0299223125f805ec0861a2028ed93d12aa8..ddc6608fe643df4a34a95d86d081ae0e5e7ca89f 100644 --- a/src/react-components/ui-root.js +++ b/src/react-components/ui-root.js @@ -265,12 +265,9 @@ class UIRoot extends Component { const hasGrantedMic = await this.hasGrantedMicPermissions(); if (hasGrantedMic) { - console.log("a"); await this.setMediaStreamToDefault(); - console.log("b"); this.beginOrSkipAudioSetup(); } else { - console.log("c"); this.setState({ entryStep: ENTRY_STEPS.mic_grant }); } };