5 lines
96 B
GLSL
5 lines
96 B
GLSL
vec2 scrollUV(vec2 uv, float time, float speed) {
|
|
uv.y += time * speed * 0.12;
|
|
return uv;
|
|
}
|