Bit more cleanup.

This commit is contained in:
2025-08-07 16:05:24 -05:00
parent 53ad2da596
commit a7dcf760a7
328 changed files with 63 additions and 213098 deletions

View File

@@ -0,0 +1,14 @@
shader_type spatial;
render_mode unshaded;
uniform sampler2D text;
//void vertex() {
//
//}
void fragment() {
vec4 tex_color = texture(text, UV);
ALBEDO = tex_color.rgb;
ALPHA = tex_color.a;
}