Files
slime-moldies/shaders/view_simulation.gdshader
2025-08-03 01:39:59 +03:00

8 lines
141 B
Plaintext

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