diff options
| author | maxim_productengine <mnikolenko@productengine.com> | 2019-05-30 17:39:53 +0300 | 
|---|---|---|
| committer | maxim_productengine <mnikolenko@productengine.com> | 2019-05-30 17:39:53 +0300 | 
| commit | c338d337e70fed66661803dc82a9530a95755e34 (patch) | |
| tree | 67f34e85dd59e406c8e591813a2a512bfb8ec5a6 | |
| parent | d081df14ef4c19395b6c0f6e826764d91d4e034f (diff) | |
SL-11230 FIXED Imposter Avatars become Jellies with Basic Shaders disabled
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 20fa327790..91c9a9f86d 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -10257,6 +10257,11 @@ void LLVOAvatar::calcMutedAVColor()          new_color = LLColor4::grey4;          change_msg = " blocked: color is grey4";      } +    else if (!isTooComplex()) +    { +        new_color = LLColor4::white; +        change_msg = " simple imposter "; +    }      else if ( mMutedAVColor == LLColor4::white || mMutedAVColor == LLColor4::grey3 || mMutedAVColor == LLColor4::grey4 )      {          // select a color based on the first byte of the agents uuid so any muted agent is always the same color | 
