Files
2026-03-02 02:17:04 +00:00

7 lines
110 B
Plaintext
Executable File

shader_type canvas_item;
void fragment() {
float a = texture(TEXTURE, UV).a;
COLOR = vec4(a, a, a, 1.0);
}