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 | e606b7918dc6dbe2a4048f4bbd8590bfc3eca90e (patch) | |
tree | 2ad86a95205c9271e78aed50b14991b23f562b2a /indra/newview/llface.cpp | |
parent | 816e8578f9b63640afde942df282ccf5ed1385a5 (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; } |