diff options
| author | Dessie Linden <dessie@lindenlab.com> | 2010-06-24 06:22:00 -0700 |
|---|---|---|
| committer | Dessie Linden <dessie@lindenlab.com> | 2010-06-24 06:22:00 -0700 |
| commit | 18a476daceccd337e990eec367cac5b985c8836f (patch) | |
| tree | f9ff83c4e4654876fe75459b6c92be54b134fe0a /indra/newview/llvoavatar.cpp | |
| parent | 15909a45757252b98b4e8fdb098f08df1248ed4b (diff) | |
| parent | f0318bf68ef01fcf011da97073b75c3ddc29414d (diff) | |
Merged from viewer-release
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 2ebc60957d..e79174e2f1 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -3197,7 +3197,10 @@ BOOL LLVOAvatar::updateCharacter(LLAgent &agent) visible = (LLDrawable::getCurrentFrame()+mID.mData[0])%mUpdatePeriod == 0 ? TRUE : FALSE; } - if (!visible) + // don't early out for your own avatar, as we rely on your animations playing reliably + // for example, the "turn around" animation when entering customize avatar needs to trigger + // even when your avatar is offscreen + if (!visible && !isSelf()) { updateMotions(LLCharacter::HIDDEN_UPDATE); return FALSE; |
