在 A-Frame 中进入 VR 模式时场景呈现黑色

Scene rendering black when entering VR mode in A-Frame

我正在使用 A-Frame 0.3.0。屏幕上的一切都很好,但当我进入 VR 模式时,它呈现黑色。从 9 月开始,我尝试了最新的 Chromium 和 Firefox Nightly 版本。即使是 A-Frame 示例也不起作用。

<script src="https://aframe.io/releases/0.3.1/aframe.min.js"></script>
<a-scene>
  <a-box color="red"></a-box>
</a-scene>

这是因为 Chromium 和 Firefox Nightly 的 2016 年 9 月版本已更新为使用新的 WebVR 1.1 API 规范,而 A-Frame 正在使用 WebVR 1.0 API 规范。

这已在 A-Frame v0.3.2 中更新,我们提高了 VREffect 以匹配最新的 API 更改。

<script src="https://aframe.io/releases/0.3.2/aframe.min.js"></script>
<a-scene>
  <a-box color="red"></a-box>
</a-scene>

编辑:已宣布针对 WebVR 1.1 的其他重大更改,因此在 A-Frame 再次更新之前,浏览器的未来实验版本可能会暂时中断