new repo who this

This commit is contained in:
2026-06-17 15:28:56 -07:00
commit 63a2a11871
561 changed files with 38648 additions and 0 deletions
@@ -0,0 +1,13 @@
shader_type spatial;
render_mode depth_test_disabled, skip_vertex_transform, unshaded, cull_disabled;
uniform vec4 albedo : source_color;
void vertex() {
POSITION = vec4(VERTEX.x, -VERTEX.y, 0.0, 1.0);
}
void fragment() {
ALBEDO = albedo.rgb;
ALPHA = albedo.a;
}