7 lines
No EOL
118 B
Text
7 lines
No EOL
118 B
Text
shader_type canvas_item;
|
|
|
|
uniform float min_y;
|
|
|
|
void fragment() {
|
|
COLOR = texture(TEXTURE, UV) * step(min_y, UV.y);
|
|
} |