2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

A-frame:スマホで開いたときにジャイロセンサーのデータが拾えない問題

Posted at

#A-frameで作ったものをChromeで開いても、ジャイロセンサーのデータが拾えないと思っていた

これまでGlitchで作品作りの練習をしてきたが、Chromeで開くと、加速度センサーは使えていない様子で、
x方向にスクロールはできるものの、傾けても反応がなかった。

#あれ?加速度センサー使えるの?

しかしこのサンプルはスマホで開いてもぬるぬる方向転換できる。
https://aframe.io/examples/showcase/sky/

あれ?chromeでも反応するの?

#解決策:A-frameの読み込み先を変えたら動いた

    <script src="https://aframe.io/releases/0.5.0/aframe.min.js"></script>

だと、ジャイロセンサー使ってもいいですか?のアラートはでない。


 <script src="https://cdn.jsdelivr.net/gh/aframevr/aframe@9d093bbd98ef98fa0ccc7b791a16c066fcafbc29/dist/aframe-master.min.js"></script>

こっちだと動いた。version1.0以上じゃないとだめみたい。

<参考:A-Frameで360度パノラマを表示する>
https://vr-murakamicastle.jp/sakuji/sakuji_018.html

#問題点:バージョンを変えることによって動かなくなる機能がある

npm経由で読み込んだ機能がいくつか動いていないので、これから紐解き予定。

2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?