anotherTunnelMessToWorkWith

This commit is contained in:
Marco
2024-02-23 11:28:00 +01:00
parent 8d8f7aacf6
commit 26fd76c2a1
57 changed files with 1320 additions and 112 deletions

View File

@@ -0,0 +1,7 @@
varying vec2 vUv;
uniform sampler2D u_texture;
void main() {
vec4 color = texture2D(u_texture, vUv);
gl_FragColor = color;
}