How to display cursor (Reticle) in VR - mode using React-vr?

742 Views Asked by At

https://facebook.github.io/react-vr/docs/input.html Based on this documentation I have done sample. In browser I can see the mouse pointer which is default. In Android chrome I don't see any cursor or pointer. But touch works and colour of the text is getting updated on touch. When I am switching into VR mode there is no cursor visible.

Attached screen shot for reference. enter image description here

enter image description here

enter image description here

2

There are 2 best solutions below

0
On

For the new React360 framework you can also use the SimpleRayCaster:

https://www.npmjs.com/package/simple-raycaster

In your client.js file add the following to the imports:

import SimpleRaycaster from "./SimpleRaycaster";

Then add the following lines after the r360 instance is created:

  r360.controls.addRaycaster(SimpleRaycaster);
  r360.compositor.setCursorVisibility('visible');
1
On