mirror of
https://gitlab.com/open-fpsz/open-fpsz.git
synced 2026-01-19 19:44:46 +00:00
9 lines
130 B
Plaintext
9 lines
130 B
Plaintext
shader_type canvas_item;
|
|
|
|
uniform sampler2D background : source_color;
|
|
|
|
void fragment() {
|
|
COLOR = texture(background, UV);
|
|
}
|
|
|