diff --git a/src/components/offset-relative-to.js b/src/components/offset-relative-to.js
index f940b687284b34677c579e931557fc9671631f41..39361022488971c5b41a160520594020d81f36ac 100644
--- a/src/components/offset-relative-to.js
+++ b/src/components/offset-relative-to.js
@@ -18,12 +18,6 @@ AFRAME.registerComponent("offset-relative-to", {
     const offsetVector = new THREE.Vector3().copy(this.data.offset);
     this.data.target.object3D.localToWorld(offsetVector);
     this.el.setAttribute("position", offsetVector);
-
-    const headWorldRotation = this.data.target.object3D.getWorldRotation();
-    this.el.setAttribute("rotation", {
-      x: headWorldRotation.x * THREE.Math.RAD2DEG,
-      y: headWorldRotation.y * THREE.Math.RAD2DEG,
-      z: headWorldRotation.z * THREE.Math.RAD2DEG
-    });
+    this.data.target.object3D.getWorldQuaternion(this.el.object3D.quaternion);
   }
 });