├── .gitattributes ├── .gitignore ├── LICENCE ├── README.md ├── WebGLTemplates ├── WebVR.meta └── WebVR │ ├── TemplateData.meta │ ├── TemplateData │ ├── UnityProgress.js │ ├── UnityProgress.js.meta │ ├── default-cover.jpg │ ├── default-cover.jpg.meta │ ├── favicon.ico │ ├── favicon.ico.meta │ ├── fullbar.png │ ├── fullbar.png.meta │ ├── fullscreen.svg │ ├── loadingbar.png │ ├── loadingbar.png.meta │ ├── logo.png │ ├── logo.png.meta │ ├── progresslogo.png │ ├── progresslogo.png.meta │ ├── style.css │ ├── style.css.meta │ ├── vr-reset.svg │ └── vr-toggle.svg │ ├── css.meta │ ├── css │ ├── webvr.css │ └── webvr.css.meta │ ├── index.html │ ├── index.html.meta │ ├── js.meta │ ├── js │ ├── UnityWebVRManager.js │ ├── UnityWebVRManager.js.meta │ └── three.min.js │ ├── thumbnail.png │ ├── thumbnail.png.meta │ ├── web.config │ └── web.config.meta ├── WebVRAssets ├── StereoCamera.cs └── WebVRCameraSet.prefab └── sync.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/README.md -------------------------------------------------------------------------------- /WebGLTemplates/WebVR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/UnityProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/UnityProgress.js -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/UnityProgress.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/UnityProgress.js.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/default-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/default-cover.jpg -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/default-cover.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/default-cover.jpg.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/favicon.ico -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/fullbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/fullbar.png -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/fullbar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/fullbar.png.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/fullscreen.svg -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/loadingbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/loadingbar.png -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/loadingbar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/loadingbar.png.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/logo.png -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/logo.png.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/progresslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/progresslogo.png -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/progresslogo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/progresslogo.png.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/style.css -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/style.css.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/vr-reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/vr-reset.svg -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/TemplateData/vr-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/TemplateData/vr-toggle.svg -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/css.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/css/webvr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/css/webvr.css -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/css/webvr.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/css/webvr.css.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/index.html -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/index.html.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/js.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/js/UnityWebVRManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/js/UnityWebVRManager.js -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/js/UnityWebVRManager.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/js/UnityWebVRManager.js.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/js/three.min.js -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/thumbnail.png -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/thumbnail.png.meta -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/web.config -------------------------------------------------------------------------------- /WebGLTemplates/WebVR/web.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebGLTemplates/WebVR/web.config.meta -------------------------------------------------------------------------------- /WebVRAssets/StereoCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebVRAssets/StereoCamera.cs -------------------------------------------------------------------------------- /WebVRAssets/WebVRCameraSet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/WebVRAssets/WebVRCameraSet.prefab -------------------------------------------------------------------------------- /sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtk2k/Unity-WebVR-Assets/HEAD/sync.sh --------------------------------------------------------------------------------