Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. (function() {
  2.  
  3. 'use strict';
  4.  
  5. var scene = document.querySelector('a-scene'),
  6. tapTimer = null,
  7. tapSpeed = 500;
  8.  
  9. document.addEventListener('touchstart', onCardboardTouch, false);
  10.  
  11. function onCardboardTouch() {
  12. if (!tapTimer) {
  13. tapTimer = setTimeout(function() {
  14. tapTimer = null;
  15. }, tapSpeed);
  16. }
  17. else {
  18. clearTimeout(tapTimer);
  19. tapTimer = null;
  20. scene.enterVR();
  21. }
  22. }
  23.  
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement