Merge branch 'dev' into Rycarus_Menu

This commit is contained in:
Fabio 2024-08-17 20:45:51 +02:00
commit 0d58464b3e
18 changed files with 245 additions and 36 deletions

View file

@ -0,0 +1,9 @@
shader_type canvas_item;
uniform float scroll_speed;
void fragment(){
vec2 shifteduv = UV;
shifteduv .y -= TIME * scroll_speed;
vec4 color = texture(TEXTURE, shifteduv);
COLOR = color;
}