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