8 lines
136 B
Plaintext
8 lines
136 B
Plaintext
shader_type canvas_item;
|
|
|
|
uniform vec2 direction = vec2(0, -1);
|
|
void fragment()
|
|
{
|
|
COLOR = texture(TEXTURE, UV + (direction * TIME));
|
|
}
|