Added 2d outdoor scene with parallaxe and mockup background

This commit is contained in:
2025-05-10 16:29:23 +02:00
parent d11fc9f1f2
commit 1af04631c5
270 changed files with 8945 additions and 12 deletions
+10
View File
@@ -0,0 +1,10 @@
shader_type canvas_item;
uniform vec2 tiling_scale = vec2(5.0, 5.0);
uniform sampler2D noise : repeat_enable;
void fragment() {
vec2 uv = vec2(UV.x * tiling_scale.x, UV.y * tiling_scale.y); // Change 10.0 to control tiling scale
COLOR = texture(TEXTURE, fract(uv));
}