Files
tux-typing-plus/scroll.gdshader

11 lines
119 B
Plaintext
Raw Permalink Normal View History

2026-01-24 11:47:24 -05:00
shader_type canvas_item;
uniform float speed = .1;
void vertex() {
UV.x += TIME * speed;
UV.y += TIME * speed;
}