🎉 initial commit

This commit is contained in:
anyreso 2024-04-07 14:25:59 -04:00
commit d02447c7e6
185 changed files with 8442 additions and 0 deletions

8
shaders/bg.gdshader Normal file
View file

@ -0,0 +1,8 @@
shader_type canvas_item;
uniform sampler2D background : source_color;
void fragment() {
COLOR = texture(background, UV);
}