├── .gitignore ├── LICENSE ├── README.md ├── example ├── README.md ├── build │ └── build.js ├── index.html ├── package.json ├── src │ ├── components │ │ ├── environment.js │ │ ├── noiseShader.js │ │ ├── shaders │ │ │ ├── noise.frag.glsl │ │ │ └── noise.vert.glsl │ │ └── spin.js │ ├── index.js │ ├── scene.html │ └── templates │ │ └── assets.html └── webpack.config.js ├── html ├── README.md ├── hot.template.js ├── index.js ├── package-lock.json ├── package.json └── test │ ├── compiler.js │ ├── index.html │ └── index.js └── js ├── README.md ├── hot.template.js ├── index.js ├── package-lock.json ├── package.json └── test ├── compiler.js ├── component.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/README.md -------------------------------------------------------------------------------- /example/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/build/build.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/components/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/components/environment.js -------------------------------------------------------------------------------- /example/src/components/noiseShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/components/noiseShader.js -------------------------------------------------------------------------------- /example/src/components/shaders/noise.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/components/shaders/noise.frag.glsl -------------------------------------------------------------------------------- /example/src/components/shaders/noise.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/components/shaders/noise.vert.glsl -------------------------------------------------------------------------------- /example/src/components/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/components/spin.js -------------------------------------------------------------------------------- /example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/index.js -------------------------------------------------------------------------------- /example/src/scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/scene.html -------------------------------------------------------------------------------- /example/src/templates/assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/src/templates/assets.html -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/README.md -------------------------------------------------------------------------------- /html/hot.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/hot.template.js -------------------------------------------------------------------------------- /html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/index.js -------------------------------------------------------------------------------- /html/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/package-lock.json -------------------------------------------------------------------------------- /html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/package.json -------------------------------------------------------------------------------- /html/test/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/test/compiler.js -------------------------------------------------------------------------------- /html/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/test/index.html -------------------------------------------------------------------------------- /html/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/html/test/index.js -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/README.md -------------------------------------------------------------------------------- /js/hot.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/hot.template.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/index.js -------------------------------------------------------------------------------- /js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/package-lock.json -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/package.json -------------------------------------------------------------------------------- /js/test/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/test/compiler.js -------------------------------------------------------------------------------- /js/test/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/test/component.js -------------------------------------------------------------------------------- /js/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-super-hot-loader/HEAD/js/test/index.js --------------------------------------------------------------------------------