Skip to content
Snippets Groups Projects
Commit bc7dc2f9 authored by David Parks's avatar David Parks
Browse files

SL-17160 Ignore "getIsAlphaMask" on rigged faces.

parent 84e22d41
No related branches found
No related tags found
1 merge request!83Merge Linden 6.6.7
...@@ -1172,6 +1172,11 @@ bool LLFace::canRenderAsMask() ...@@ -1172,6 +1172,11 @@ bool LLFace::canRenderAsMask()
return true; return true;
} }
if (isState(LLFace::RIGGED))
{ // never auto alpha-mask rigged faces
return false;
}
const LLTextureEntry* te = getTextureEntry(); const LLTextureEntry* te = getTextureEntry();
if( !te || !getViewerObject() || !getTexture() ) if( !te || !getViewerObject() || !getTexture() )
{ {
......
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