Как включить камеру для A-Frame на мобильном телефоне? - PullRequest
0 голосов
/ 14 сентября 2018

У меня есть нестандартный html-файл, с которым я собираюсь протестировать WebAR на своем телефоне Android, но он не работает.Когда я открыл html-файл в Firefox, он побуждает меня включить мою веб-камеру просто отлично, но это не делает этого на моем телефоне.

<meta charset="utf-8">
<title>WebAR Test</title>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
<script src="https://jeromeetienne.github.io/AR.js/aframe/build/aframe-ar.js"></script>

<body style='margin : 0px; overflow: hidden;'>
    <a-scene ar>
		<a-plane position="0 -2 -4" rotation="-90 -5 0" width="4" height="4" color="#F1BFFF"></a-plane>
		<a-sphere position="0 0 -4" radius="0.5" color="#396EFF"></a-sphere>
		<a-cylinder position="0 1 -4" radius="0.3" height="2" color="#373027">
		<a-box position="0 3.8 0" width="1" height="5" depth="0.5" color="#a8a8a8"></a-box>
		<a-box position="0 1.2 0" width="2" height="0.5" depth="0.8" color="#FFC706"></a-box></a-cylinder>
		<a-marker-camera preset='hiro'></a-marker-camera>
    </a-scene>
</body>

Я что-то упускаю или делаю неправильно?

...