mirror of
https://github.com/CLfamilaris/VRDOM.git
synced 2025-02-14 17:42:43 +01:00
9 lines
208 B
Plaintext
9 lines
208 B
Plaintext
shader_type spatial;
|
|
render_mode unshaded;
|
|
uniform sampler2D texture_albedo : source_color;
|
|
void fragment()
|
|
{
|
|
vec4 albedo_tex = texture(texture_albedo, UV);
|
|
ALBEDO = albedo_tex.bgr;
|
|
ALPHA = albedo_tex.a;
|
|
} |