This commit is contained in:
Booklordofthedings 2024-08-17 15:16:34 +02:00
parent 90e378c2db
commit e04b50f15b
3 changed files with 52 additions and 11 deletions

File diff suppressed because one or more lines are too long

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;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 KiB