shader_type canvas_item; uniform sampler2D sim_texture; void fragment() { vec3 c = texture(sim_texture, UV).rgb; COLOR = vec4(c, 1.0); }