如何让 React 360 Vr 模式在 ios 设备上工作?
How to make React360 Vrmode work on ios device?
我想让 React360 split scene 在 ios 设备上工作,我尝试使用 webvr-polyfill , 但我不知道怎么用
对不起我的语言,我不是母语人士
您究竟是如何尝试使用 webvr-polyfill 的?您将需要它,因为 iOS 本身不支持它。
只需在 index.html 中包含 webvr-polyfill。添加 webvr-polyfill bevor 运行 任何类型的 react-360 代码。示例:
<script src='PATH_TO_YOU_POLYFILL_FILE/webvr-polyfill.min.js'></script>
<script>var polyfill = new WebVRPolyfill();</script>
<script src="./client.bundle?platform=vr"></script>
<script>
// Initialize the React 360 application
WebVR.init(
'index.bundle?platform=vr&dev=true',
document.getElementById('container'),
{
assetRoot: 'static_assets/',
}
);
</script>
我想让 React360 split scene 在 ios 设备上工作,我尝试使用 webvr-polyfill , 但我不知道怎么用
对不起我的语言,我不是母语人士
您究竟是如何尝试使用 webvr-polyfill 的?您将需要它,因为 iOS 本身不支持它。
只需在 index.html 中包含 webvr-polyfill。添加 webvr-polyfill bevor 运行 任何类型的 react-360 代码。示例:
<script src='PATH_TO_YOU_POLYFILL_FILE/webvr-polyfill.min.js'></script>
<script>var polyfill = new WebVRPolyfill();</script>
<script src="./client.bundle?platform=vr"></script>
<script>
// Initialize the React 360 application
WebVR.init(
'index.bundle?platform=vr&dev=true',
document.getElementById('container'),
{
assetRoot: 'static_assets/',
}
);
</script>