shader_type spatial; void vertex(){ VERTEX.y += sin(TIME * 5.0 * VERTEX.x * 8.0) * 0.2; } void fragment() { ALBEDO = vec3(1, 0, 0); }