1
0
forked from joey/godottest
Joey Eamigh 9989fab018
addons?
2025-10-10 14:07:23 -04:00

12 lines
226 B
Plaintext

shader_type canvas_item;
uniform vec4 tint : source_color;
void fragment() {
float greyscale = COLOR.r * 0.299 + COLOR.g * 0.587 + COLOR.b * 0.114;
COLOR.rgb = mix(vec3(greyscale), tint.rgb, 0.5);
COLOR.a *= tint.a;
}