├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── aframe-dynamic-fov-reduction-v104-512.gif ├── aframe-dynamic-fov-reduction-v104.gif ├── assets └── vignette.png ├── index.html └── js ├── aframe-dynamic-fov-reduction.js └── aframe-dynamic-fov-reduction.min.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | index.html linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/README.md -------------------------------------------------------------------------------- /aframe-dynamic-fov-reduction-v104-512.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/aframe-dynamic-fov-reduction-v104-512.gif -------------------------------------------------------------------------------- /aframe-dynamic-fov-reduction-v104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/aframe-dynamic-fov-reduction-v104.gif -------------------------------------------------------------------------------- /assets/vignette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/assets/vignette.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/index.html -------------------------------------------------------------------------------- /js/aframe-dynamic-fov-reduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/js/aframe-dynamic-fov-reduction.js -------------------------------------------------------------------------------- /js/aframe-dynamic-fov-reduction.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedart76/aframe-dynamic-fov-reduction/HEAD/js/aframe-dynamic-fov-reduction.min.js --------------------------------------------------------------------------------