Skip to content
Snippets Groups Projects
Commit ef7ddc94 authored by pavelkproductengine's avatar pavelkproductengine
Browse files

MAINT-6551 One of my avatars does not render correctly when ALM is disabled...

MAINT-6551 One of my avatars does not render correctly when ALM is disabled unless basic shaders are also disabled.
parent abbf5ff4
No related branches found
No related tags found
No related merge requests found
......@@ -43,12 +43,12 @@ void default_lighting()
{
vec4 color = texture2D(diffuseMap,vary_texcoord0.xy);
color *= vertex_color;
if (color.a < minimum_alpha)
{
discard;
}
color.rgb *= vertex_color.rgb;
color.rgb = atmosLighting(color.rgb);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment