├── .gitignore ├── .travis.yml ├── MenuScene.js ├── README.md ├── Utilities.js ├── deploy-to-gh-pages.sh ├── deps ├── VRControls.js ├── VREffect.js ├── three.min.js └── webvr-polyfill.js ├── header.png ├── main.css ├── main.html ├── main.js ├── preview.gif └── textures ├── circle.png ├── lookdown.png ├── lookdown_icon.png ├── menu.png ├── shadow.png ├── square.png ├── triangle.png └── x.png /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /MenuScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/MenuScene.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/README.md -------------------------------------------------------------------------------- /Utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/Utilities.js -------------------------------------------------------------------------------- /deploy-to-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/deploy-to-gh-pages.sh -------------------------------------------------------------------------------- /deps/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/deps/VRControls.js -------------------------------------------------------------------------------- /deps/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/deps/VREffect.js -------------------------------------------------------------------------------- /deps/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/deps/three.min.js -------------------------------------------------------------------------------- /deps/webvr-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/deps/webvr-polyfill.js -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/header.png -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/main.css -------------------------------------------------------------------------------- /main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/main.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/main.js -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/preview.gif -------------------------------------------------------------------------------- /textures/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/circle.png -------------------------------------------------------------------------------- /textures/lookdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/lookdown.png -------------------------------------------------------------------------------- /textures/lookdown_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/lookdown_icon.png -------------------------------------------------------------------------------- /textures/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/menu.png -------------------------------------------------------------------------------- /textures/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/shadow.png -------------------------------------------------------------------------------- /textures/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/square.png -------------------------------------------------------------------------------- /textures/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/triangle.png -------------------------------------------------------------------------------- /textures/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/vr-menu-demo/HEAD/textures/x.png --------------------------------------------------------------------------------