building a pure graphics pipeline version of this

This commit is contained in:
2025-08-02 23:23:57 +03:00
parent 93ea79937b
commit 82916425c8
19 changed files with 345 additions and 271 deletions

View File

@@ -0,0 +1,7 @@
shader_type canvas_item;
uniform sampler2D trail_tex;
void fragment() {
float v = texture(trail_tex, UV).r;
COLOR = vec4(vec3(v), 1.0);
}