我正在尝试使用 Three.js 集成 VR,我将这些内容添加到我的代码中:
import { VRButton } from "three/examples/jsm/webxr/VRButton.js";
和
document.body.appendChild(VRButton.createButton(renderer1));
renderer1.xr.enabled = true;
我的问题是:
我想我的问题是我在 localhost 和 webpack 服务器中,URL 是:
http://localhost:8080/
这不是 https,我从中学到了
https://developer.mozilla.org/en-US/docs/Web/API/WebXR_Device_API webxr 仅适用于 https。
是不是因为https,如果是的话我该如何解决这个问题以便我可以学习! 如果没有,我还需要做什么!!!
谢谢你
您可以使用 glitch.com 为您所做的事情创建一个网站,这就是 https。