8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
shader_type canvas_item;
|
|
|
|
uniform sampler2D view_texture;
|
|
|
|
void fragment() {
|
|
vec3 v = texture(view_texture, UV).rgb;
|
|
COLOR = vec4(v, 1.0);
|
|
} |