I recently upgrade my aframe from 0.5.0 directly to 0.8.1 due to Chrome v65 compatibility issue. One of the changes, as documented is that Aframe no longer controls camera pose, which will be controlled directly by three.js.
There is a recent PR here about the change: https://github.com/aframevr/aframe/pull/3327
This change removes the userHeight parameter support for camera position. In my application, I would need the camera to be at (0, 0, 0) in both VR and non-VR mode.
I tried to use:
<a-entity camera position="0 0 0"> </a-entity>
or
<a-camera position="0 0 0"> </a-camera>
but the result of both of them is that the camera is position at (0, 0, 0) before entering VR. After entering VR, the it is at (0, 1.6, 0) and after exiting VR, it remains at (0, 1.6, 0).
The question is: how do I set the camera postion to (0, 0, 0) in both VR and non-VR mode in [email protected]?
Also, this answer is no longer valid right?