wip import existing shaders

This commit is contained in:
2025-09-19 19:39:04 +02:00
parent 9137a95a71
commit 60056fd48a
8 changed files with 502 additions and 118 deletions
+3 -1
View File
@@ -7,6 +7,8 @@
in vec2 vUV;
out vec4 fragColor;
const float seed = 334;
void main() {
fragColor = mix_stage(vUV, tex3, tex6, sin(iTime * 0.25) * 0.3 + 0.3); // TODO tmp
fragColor = mix_stage(vUV, tex3, tex6, seed);
}