├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── baboon.png ├── frag.glsl ├── index.html ├── index.js ├── package.json └── vert.glsl /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/README.md -------------------------------------------------------------------------------- /baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/baboon.png -------------------------------------------------------------------------------- /frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/frag.glsl -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/package.json -------------------------------------------------------------------------------- /vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/three-glslify-example/HEAD/vert.glsl --------------------------------------------------------------------------------