Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function customEnterVR () {
  2. var scene = document.querySelector('a-scene');
  3. if (scene) {
  4. if (scene.hasLoaded) {
  5. scene.enterVR();
  6. } else {
  7. scene.addEventListener('loaded', scene.enterVR);
  8. }
  9. }
  10. }
  11.  
  12. button.addEventListener('click', customEnterVR);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement