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; }