my mother ate fries

This commit is contained in:
GitCosm0s
2026-01-24 11:47:24 -05:00
parent 0c718f66a7
commit 56b0a9e682
8 changed files with 143 additions and 0 deletions

10
scroll.gdshader Normal file
View File

@@ -0,0 +1,10 @@
shader_type canvas_item;
uniform float speed = .1;
void vertex() {
UV.x += TIME * speed;
UV.y += TIME * speed;
}