9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
shader_type canvas_item;
|
|
|
|
uniform sampler2D sim_texture;
|
|
|
|
void fragment() {
|
|
vec3 c = texture(sim_texture, UV).rgb;
|
|
COLOR = vec4(c, 1.0);
|
|
}
|