11 lines
119 B
Plaintext
11 lines
119 B
Plaintext
shader_type canvas_item;
|
|
|
|
uniform float speed = .1;
|
|
|
|
void vertex() {
|
|
UV.x += TIME * speed;
|
|
UV.y += TIME * speed;
|
|
}
|
|
|
|
|