mirror of
https://gitlab.com/open-fpsz/open-fpsz.git
synced 2026-04-29 08:15:35 +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);
|
|
}
|
|
|