mirror of
https://gitlab.com/open-fpsz/open-fpsz.git
synced 2026-03-27 08:09:25 +00:00
8 lines
130 B
Text
8 lines
130 B
Text
shader_type canvas_item;
|
|
|
|
uniform sampler2D background : source_color;
|
|
|
|
void fragment() {
|
|
COLOR = texture(background, UV);
|
|
}
|
|
|