heliostat/src/shaders/blur.gdshader
2024-07-21 23:36:07 -06:00

7 lines
136 B
Plaintext

shader_type canvas_item;
uniform float lod: hint_range(0.0, 5.0) = 0.0;
void fragment() {
COLOR = texture(TEXTURE, SCREEN_UV, lod);
}