├── .gitignore ├── LICENSE.md ├── README.md ├── index.html ├── package.json ├── src ├── given.js ├── glsl │ ├── composite.frag │ ├── composite.vert │ ├── player-texture.frag │ ├── player-texture.vert │ ├── sample.frag │ └── sample.vert ├── index.js ├── model.js └── view.js └── static ├── bundle.js ├── clink.wav ├── concrete.png ├── ding.wav ├── rolling.wav └── stone.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/package.json -------------------------------------------------------------------------------- /src/given.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/given.js -------------------------------------------------------------------------------- /src/glsl/composite.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/glsl/composite.frag -------------------------------------------------------------------------------- /src/glsl/composite.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/glsl/composite.vert -------------------------------------------------------------------------------- /src/glsl/player-texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/glsl/player-texture.frag -------------------------------------------------------------------------------- /src/glsl/player-texture.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/glsl/player-texture.vert -------------------------------------------------------------------------------- /src/glsl/sample.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/glsl/sample.frag -------------------------------------------------------------------------------- /src/glsl/sample.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/glsl/sample.vert -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/index.js -------------------------------------------------------------------------------- /src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/model.js -------------------------------------------------------------------------------- /src/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/src/view.js -------------------------------------------------------------------------------- /static/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/static/bundle.js -------------------------------------------------------------------------------- /static/clink.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/static/clink.wav -------------------------------------------------------------------------------- /static/concrete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/static/concrete.png -------------------------------------------------------------------------------- /static/ding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/static/ding.wav -------------------------------------------------------------------------------- /static/rolling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/static/rolling.wav -------------------------------------------------------------------------------- /static/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwtyro/astray-2/HEAD/static/stone.png --------------------------------------------------------------------------------