0

Is there a way to check the compatibility of the device with React VR? I.e. it is not running on old iPads.

How can I show a replacement text if the device is not compatible?

Thanks!

Jan F.
  • 1,681
  • 2
  • 15
  • 27

1 Answers1

0

In general, you can check just WebGL support because to render 3D scenes ReactVR is using three.js (and three.js is using WebGL for this).

If you want to run your project on VR devises you have to check also WebVR support. Here you have supported devices list.

In summary, ReactVR projects should run on all devices that support WebGL so iPads also (but I didn't check it by myself on any iOS device so can't say for sure). Problem is when you want to use VR features like for example running it on your phone in Cardboard. Then you need WebVR. That's why probably you heard it's not working on iPad because iOS is not supporting it yet (but you can find some polyfills).

Alan Wołejko
  • 442
  • 2
  • 5
  • 20