diff options
author | Dave Parks <davep@lindenlab.com> | 2022-10-14 17:36:17 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-10-14 17:36:17 -0500 |
commit | d9d9edfa6dafa137d1c69c476872d74d33c06771 (patch) | |
tree | ca958f938c2ad6c0f09f37f3b15f5ae2b7e9c7a6 /indra/newview/llmaterialeditor.h | |
parent | f6762c3de57434730a2cbf6d0241bf1db5c9346c (diff) | |
parent | 531d38ba1d030d85ec12e1206b3de3c6cb082a9a (diff) |
Merge branch 'DRTVWR-559' of ssh://bitbucket.org/lindenlab/viewer into DRTVWR-559
Diffstat (limited to 'indra/newview/llmaterialeditor.h')
-rw-r--r-- | indra/newview/llmaterialeditor.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llmaterialeditor.h b/indra/newview/llmaterialeditor.h index d329222648..96bf8cc7a2 100644 --- a/indra/newview/llmaterialeditor.h +++ b/indra/newview/llmaterialeditor.h @@ -215,6 +215,10 @@ public: // initialize the UI from a default GLTF material void loadDefaults(); + + void modifyMaterialCoro(std::string cap_url, LLSD overrides); + void setOverrideTarget(U32 local_id, S32 face_id); + private: void loadMaterial(const tinygltf::Model &model, const std::string &filename_lc, S32 index); @@ -264,5 +268,8 @@ private: S32 mExpectedUploadCost; std::string mMaterialNameShort; std::string mMaterialName; + + U32 mOverrideLocalId; + S32 mOverrideFace; }; |