├── .gitignore ├── icon.png ├── index.html ├── manifest.json ├── package.json ├── src ├── fire.ts ├── glsl.d.ts ├── index.ts ├── smoother.ts ├── stick.ts ├── texture.ts └── tube.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/icon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/package.json -------------------------------------------------------------------------------- /src/fire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/src/fire.ts -------------------------------------------------------------------------------- /src/glsl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/src/glsl.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/smoother.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/src/smoother.ts -------------------------------------------------------------------------------- /src/stick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/src/stick.ts -------------------------------------------------------------------------------- /src/texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/src/texture.ts -------------------------------------------------------------------------------- /src/tube.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/src/tube.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tompng/senkouhanabi_gl/HEAD/webpack.config.js --------------------------------------------------------------------------------