Is it possible to hide the vr symbol which appears until your mouse is over the vr view?
It doesn't seem possible to disable all controls. You can disable touch panning with disableTouchPanning on mobile and it still uses the device orientation.
ReactVR.init(
'./index.bundle.js',
document.body,
options = {
disableTouchPanning: true,
hideFullscreen: true,
hideCompass: true,
}
);
(see https://github.com/facebook/react-vr/blob/master/ReactVR/js/VRInstance.js)
Thanks!