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; }