initial setup

This commit is contained in:
2025-08-03 01:39:59 +03:00
parent 82916425c8
commit b10deff5e0
10 changed files with 113 additions and 19 deletions

View File

@@ -0,0 +1,8 @@
shader_type canvas_item;
uniform sampler2D sim_texture;
void fragment() {
vec3 c = texture(sim_texture, UV).rgb;
COLOR = vec4(c, 1.0);
}