shader_type canvas_item; uniform float height = 2.0; uniform float freq = 3.0; uniform float speed = 5.0; void vertex() { VERTEX.y += height * sin((freq * UV.x) + speed * TIME); }