Files
tux-typing-plus/scroll.gdshader
2026-01-24 11:47:24 -05:00

11 lines
119 B
Plaintext

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