One_Eleven_Android/resources/AlternativeChoices/HoverAlternativeBlack.gdshader
2024-11-10 03:34:28 +03:00

9 lines
No EOL
182 B
Text

shader_type canvas_item;
uniform float mixing = 0.0;
void fragment(){
vec4 color = texture(TEXTURE,UV);
color.rgb = mix(color.rgb, vec3(0,0,0).rgb, mixing*3.0);
COLOR = color;
}