├── .gitignore ├── package.json ├── readme.md ├── src ├── index.html ├── script.js └── style.css └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | .vercel 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/three.js-tsl-template/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/three.js-tsl-template/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/three.js-tsl-template/HEAD/src/index.html -------------------------------------------------------------------------------- /src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/three.js-tsl-template/HEAD/src/script.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/three.js-tsl-template/HEAD/src/style.css -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/three.js-tsl-template/HEAD/vite.config.js --------------------------------------------------------------------------------