adds the game

This commit is contained in:
2026-08-14 18:01:56 -04:00
commit 9edadb3ce2
563 changed files with 39331 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;
}