the-third-place/shaders/flash.gdshader

7 lines
145 B
Text

shader_type canvas_item;
uniform float intensity : hint_range(0.0, 1.0) = 0.0;
void fragment() {
COLOR = vec4(1.0, 1.0, 1.0, intensity);
}