diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-12-04 11:15:47 +0000 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-12-04 11:15:47 +0000 |
commit | 4b439ff968a934c127cd685b54bcc206e467a948 (patch) | |
tree | e23e4f9044d844d02c59b4b3d5016c130e0000ca /indra/newview/llvoavatar.h | |
parent | 0d2d6b42baa4fc6d253c5499324ffe5572676d87 (diff) |
SL-704 - made avatar hierarchy more consistent by adding lluiavatar for viewer-local avs used in upload previews
Diffstat (limited to 'indra/newview/llvoavatar.h')
-rw-r--r-- | indra/newview/llvoavatar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index 730373d79c..de8da4f7ca 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -237,6 +237,7 @@ public: virtual bool isSelf() const { return false; } // True if this avatar is for this viewer's agent virtual bool isControlAvatar() const { return mIsControlAvatar; } // True if this avatar is a control av (no associated user) + virtual bool isUIAvatar() const { return mIsUIAvatar; } // True if this avatar is a supplemental av used in some UI views (no associated user) private: //aligned members LL_ALIGN_16(LLVector4a mImpostorExtents[2]); @@ -461,6 +462,7 @@ public: //-------------------------------------------------------------------- public: bool mIsControlAvatar; + bool mIsUIAvatar; bool mEnableDefaultMotions; //-------------------------------------------------------------------- |