shader_type spatial; uniform sampler2D tex_main : source_color; void fragment() { vec4 col = texture(tex_main, UV); ALBEDO = COLOR.rgb * col.r; ALPHA = COLOR.a * col.r; EMISSION = COLOR.rgb; }