├── README.md ├── [10] Image ├── img │ └── BatmanvSuperman.jpg └── index.html ├── [11] Curved Image ├── img │ └── BatmanvSuperman.jpg └── index.html ├── [12] Video ├── index.html └── video │ └── Video.mp4 ├── [13] Video Sphere ├── index.html └── video │ └── SphereVideo.webm ├── [14] Plane ├── img │ └── BatmanvSuperman.jpg └── index.html ├── [15] Object Loading ├── index.html └── models │ ├── pokeball-vray.mtl │ └── pokeball-vray.obj ├── [1] Setting Up └── index.html ├── [2] Drawing A Box └── index.html ├── [3] Transformations └── index.html ├── [4] Textures ├── img │ └── texture.jpg └── index.html ├── [5] Animations ├── img │ └── texture.jpg └── index.html ├── [6] Interacting With Objects ├── img │ └── texture.jpg └── index.html ├── [7] Lighting ├── img │ └── texture.jpg └── index.html ├── [8] Skybox ├── img │ ├── sky.jpg │ └── texture.jpg └── index.html └── [9] Model Loading ├── index.html └── models ├── aztec-temple.mtl ├── aztec-temple.obj ├── tex_temple_02.jpg ├── tex_terrain_02.jpg └── tex_tree_01.jpg /README.md: -------------------------------------------------------------------------------- 1 | # A-Frame WebVR Tutorials 2 | 3 | -------------------------------------------------------------------------------- /[10] Image/img/BatmanvSuperman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/A-Frame-WebVR-Tutorials/f2db2cfaa564c6e60b3a872c3657bd4d59413e99/[10] Image/img/BatmanvSuperman.jpg -------------------------------------------------------------------------------- /[10] Image/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |