diff --git a/src/components/ik-controller.js b/src/components/ik-controller.js
index 798314e649356433847c5189b5490162adb4c215..0cbbcb9df0387e103fe73f3fa59de4dcbe11d126 100644
--- a/src/components/ik-controller.js
+++ b/src/components/ik-controller.js
@@ -102,6 +102,9 @@ AFRAME.registerComponent("ik-controller", {
     this.rightHandLastVisible = true;
     this.visibleScale = new Vector3(1, 1, 1);
     this.invisibleScale = new Vector3(0.0000001, 0.0000001, 0.0000001);
+
+    this.leftHandRotation = new Matrix4().makeRotationFromEuler(new Euler(-Math.PI / 2, Math.PI / 2, 0));
+    this.rightHandRotation = new Matrix4().makeRotationFromEuler(new Euler(Math.PI / 2, Math.PI / 2, 0));
   },
 
   update(oldData) {
@@ -217,7 +220,10 @@ AFRAME.registerComponent("ik-controller", {
         this.leftHandLastVisible = true;
       }
 
-      leftHand.object3D.matrix.multiplyMatrices(leftController.object3D.matrix, iRootToChest);
+      leftHand.object3D.matrix
+        .multiplyMatrices(iRootToChest, leftController.object3D.matrix)
+        .multiply(this.leftHandRotation);
+
       updateEntityFromMatrix(leftHand);
     } else {
       if (this.leftHandLastVisible) {
@@ -231,7 +237,10 @@ AFRAME.registerComponent("ik-controller", {
         rightHand.setAttribute("scale", visibleScale);
         this.rightHandLastVisible = true;
       }
-      rightHand.object3D.matrix.multiplyMatrices(rightController.object3D.matrix, iRootToChest);
+      rightHand.object3D.matrix
+        .multiplyMatrices(iRootToChest, rightController.object3D.matrix)
+        .multiply(this.rightHandRotation);
+
       updateEntityFromMatrix(rightHand);
     } else {
       if (this.rightHandLastVisible) {
diff --git a/templates/room.hbs b/templates/room.hbs
index 874b72bd4807d66a97004ed3f8669777d1fabeaf..699c93fbc0aced73af3c20f77fcac5b0ad737fb1 100644
--- a/templates/room.hbs
+++ b/templates/room.hbs
@@ -120,7 +120,8 @@
             <a-entity
                 id="player-camera"
                 class="camera"
-                camera="userHeight: 1.6"
+                camera
+                position="0 1.6 0"
                 personal-space-bubble
                 look-controls
             ></a-entity>
@@ -162,9 +163,9 @@
                             id="watch"
                             cached-gltf-model="#watch-model"
                             bone-mute-state-indicator
-                            position="-0.003 0.009 0.085"
-                            rotation="-79.12547150756669 -160.1417037390651 -100.1530225888679"
                             scale="1.5 1.5 1.5"
+                            rotation="0 -90 90"
+                            position="0 -0.04 0"
                         ></a-entity>
                     </a-entity>
                 </template>