From af60860e8e64a462d58c35ca049854587ead14ca Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Tue, 2 Oct 2018 20:53:14 +0000 Subject: [PATCH] Fix initial camera orientation --- src/components/pitch-yaw-rotator.js | 7 +++++++ src/hub.js | 1 + 2 files changed, 8 insertions(+) diff --git a/src/components/pitch-yaw-rotator.js b/src/components/pitch-yaw-rotator.js index 7af5799e7..bc1bd4f78 100644 --- a/src/components/pitch-yaw-rotator.js +++ b/src/components/pitch-yaw-rotator.js @@ -1,4 +1,6 @@ const degToRad = THREE.Math.degToRad; +const radToDeg = THREE.Math.radToDeg; + AFRAME.registerComponent("pitch-yaw-rotator", { schema: { minPitch: { default: -50 }, @@ -17,6 +19,11 @@ AFRAME.registerComponent("pitch-yaw-rotator", { this.yaw += deltaYaw; }, + set(pitch, yaw) { + this.pitch = radToDeg(pitch); + this.yaw = radToDeg(yaw); + }, + tick() { this.el.object3D.rotation.set(degToRad(this.pitch), degToRad(this.yaw), 0); this.el.object3D.rotation.order = "YXZ"; diff --git a/src/hub.js b/src/hub.js index 692213b25..b694d396c 100644 --- a/src/hub.js +++ b/src/hub.js @@ -188,6 +188,7 @@ function setupLobbyCamera() { } camera.setAttribute("scene-preview-camera", "positionOnly: true; duration: 60"); + camera.components["pitch-yaw-rotator"].set(camera.object3D.rotation.x / 2, camera.object3D.rotation.y); } let uiProps = {}; -- GitLab