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