diff options
author | Dave Parks <davep@lindenlab.com> | 2014-03-24 14:04:40 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2014-03-24 14:04:40 -0500 |
commit | 3d80a0858d97012bf24cfb26e4053369c41b068e (patch) | |
tree | df958a4bffa5d3a723d986658dd4142dc392bd1a /indra/newview/llface.cpp | |
parent | 6bbb86811e02f508323460e875eabe836e4fe40c (diff) |
MAINT-3211 Fix for texture animations not working properly on rigged attachments when worn from inventory.
Diffstat (limited to 'indra/newview/llface.cpp')
-rwxr-xr-x | indra/newview/llface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index ae62be0ad0..d69c185a2b 100755 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -1638,7 +1638,7 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume, do_xform = false; } - if (getVirtualSize() >= MIN_TEX_ANIM_SIZE) + if (getVirtualSize() >= MIN_TEX_ANIM_SIZE || isState(LLFace::RIGGED)) { //don't override texture transform during tc bake tex_mode = 0; } |