I'm getting no errors, but for some reason a hover shader I used in godot 3 doesn't work anymore. Does anyone know why?
This is the code:
shader_type canvas_item;
uniform float height = 5.0;
uniform float speed = 5.0;
void fragment() {
VERTEX.y += height * sin(speed * TIME);
}
godot v4.0.3.stable