Files
2026-07-10 20:34:52 -05:00

7 lines
147 B
Plaintext

shader_type canvas_item;
uniform vec4 top : source_color;
uniform vec4 bottom : source_color;
void fragment() {
COLOR = mix(top, bottom, UV.y);
}