我想制作 react360拆分场景在iOS设备上工作,我尝试使用 webvr-polyfill ,但是我没有知道如何使用
对不起我的语言,我不是母语的人
您究竟如何尝试使用WebVR-PolyFill?您将需要此功能,因为iOS不本地支持它。
只需在您的index.html中包含webvr-polyfill即可。添加您运行任何类型的React-360代码的WebVR-PolyFill bevor。示例:
<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>