GDShader Playground
An online editor for
Godot
post-processing shaders
Compile
shader_type canvas_item; void fragment() { COLOR = texture(TEXTURE, UV); // Read from texture COLOR.b = 1.0; // Set blue channel to 1.0 }