diff options
author | Dave Parks <davep@lindenlab.com> | 2022-06-29 17:59:09 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-06-29 17:59:09 -0500 |
commit | fd6b5ea8c3df7e8b4b648ac7ecc9f30eedd4b7c0 (patch) | |
tree | 3162427b88a03525af0136ea06af66a049efbdef /indra/newview/llviewerobject.h | |
parent | f6515257a0cc405d6549c5d56302fb0d90176807 (diff) |
SL-17685 Drag and drop material support WIP
Diffstat (limited to 'indra/newview/llviewerobject.h')
-rw-r--r-- | indra/newview/llviewerobject.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llviewerobject.h b/indra/newview/llviewerobject.h index 5136a7e5ee..1392caa855 100644 --- a/indra/newview/llviewerobject.h +++ b/indra/newview/llviewerobject.h @@ -179,6 +179,13 @@ public: const std::string& getAttachmentItemName() const; virtual LLVOAvatar* getAvatar() const; //get the avatar this object is attached to, or NULL if object is not an attachment + + bool hasRenderMaterialParams() const; + void setHasRenderMaterialParams(bool has_params); + + const LLUUID& getRenderMaterialID(U8 te) const; + void setRenderMaterialID(U8 te, const LLUUID& id); + virtual BOOL isHUDAttachment() const { return FALSE; } virtual BOOL isTempAttachment() const; |