Shop integration

This commit is contained in:
2026-01-14 17:47:58 +01:00
parent be7f7b7bf7
commit 21b78f8d17
52 changed files with 5288 additions and 198 deletions

View File

@@ -0,0 +1,10 @@
varying vec2 vUv;
varying float vDisplacement;
uniform sampler2D tImage;
void main() {
vec4 color = texture2D(tImage, vUv);
gl_FragColor = color;
}