Skip to content

Instantly share code, notes, and snippets.

@mciastek
Created January 3, 2018 20:41
Show Gist options
  • Save mciastek/c2e3f661b6daa04f378ff74a106778e8 to your computer and use it in GitHub Desktop.
Save mciastek/c2e3f661b6daa04f378ff74a106778e8 to your computer and use it in GitHub Desktop.
import { VRInstance } from 'react-vr-web';
import RCTTorusKnot from '../TorusKnot';
function init(bundle, parent, options) {
const vr = new VRInstance(bundle, 'WelcomeToVR', parent, {
// Register RCTTorusKnot as 'TorusKnot' custom view
customViews: [{
name: 'TorusKnot',
view: RCTTorusKnot,
}],
...options,
});
vr.start();
return vr;
}
window.ReactVR = { init };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment