├── .gitignore ├── README.md ├── index.html ├── package.json ├── public ├── env_2k.hdr ├── env_4k.hdr ├── foamNoise.png ├── normal.jpeg ├── pools.glb └── water.png ├── src ├── main.ts ├── shaders │ ├── perlinNoise.glsl │ └── water │ │ ├── fragment.glsl │ │ └── vertex.glsl ├── style.css ├── typescript.svg └── vite-env.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/package.json -------------------------------------------------------------------------------- /public/env_2k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/public/env_2k.hdr -------------------------------------------------------------------------------- /public/env_4k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/public/env_4k.hdr -------------------------------------------------------------------------------- /public/foamNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/public/foamNoise.png -------------------------------------------------------------------------------- /public/normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/public/normal.jpeg -------------------------------------------------------------------------------- /public/pools.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/public/pools.glb -------------------------------------------------------------------------------- /public/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/public/water.png -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/shaders/perlinNoise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/src/shaders/perlinNoise.glsl -------------------------------------------------------------------------------- /src/shaders/water/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/src/shaders/water/fragment.glsl -------------------------------------------------------------------------------- /src/shaders/water/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/src/shaders/water/vertex.glsl -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/src/style.css -------------------------------------------------------------------------------- /src/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/src/typescript.svg -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatinChopra/Still-Water-Shader/HEAD/tsconfig.json --------------------------------------------------------------------------------