8 lines
154 B
Plaintext
8 lines
154 B
Plaintext
shader_type canvas_item;
|
|
|
|
uniform sampler2D screen_texture: hint_screen_texture;
|
|
|
|
void fragment() {
|
|
|
|
COLOR = texture(screen_texture, SCREEN_UV);
|
|
} |