open-fpsz/shaders/bg.gdshader

9 lines
130 B
Text
Raw Permalink Normal View History

2024-04-07 14:25:59 -04:00
shader_type canvas_item;
uniform sampler2D background : source_color;
void fragment() {
COLOR = texture(background, UV);
}