diff options
author | Anchor Linden <anchor@lindenlab.com> | 2018-06-13 01:09:27 +0530 |
---|---|---|
committer | Anchor Linden <anchor@lindenlab.com> | 2018-06-13 01:09:27 +0530 |
commit | 7abb0c99beec1d356ea03d0733adeab94408df41 (patch) | |
tree | 934e0481698f666deca5a2067161524d1916e424 /indra/newview/lllocalbitmaps.cpp | |
parent | 56fc3222dce79d3b52d7e234dcb929f08bfda031 (diff) |
[DRTVWR-476] - add universal head,upper,lower tattoos
Diffstat (limited to 'indra/newview/lllocalbitmaps.cpp')
-rw-r--r-- | indra/newview/lllocalbitmaps.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp index 49a0e6510c..0243e2183e 100644 --- a/indra/newview/lllocalbitmaps.cpp +++ b/indra/newview/lllocalbitmaps.cpp @@ -818,6 +818,22 @@ LLAvatarAppearanceDefines::ETextureIndex LLLocalBitmap::getTexIndex( result = LLAvatarAppearanceDefines::TEX_AUX3_TATTOO; break; } + case LLAvatarAppearanceDefines::BAKED_UPPER: + { + result = LLAvatarAppearanceDefines::TEX_UPPER_UNIVERSAL_TATTOO; + break; + } + case LLAvatarAppearanceDefines::BAKED_LOWER: + { + result = LLAvatarAppearanceDefines::TEX_LOWER_UNIVERSAL_TATTOO; + break; + } + case LLAvatarAppearanceDefines::BAKED_HEAD: + { + result = LLAvatarAppearanceDefines::TEX_HEAD_UNIVERSAL_TATTOO; + break; + } + default: { |