diff options
author | RunitaiLinden <davep@lindenlab.com> | 2024-05-01 09:51:32 -0500 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2024-05-01 09:51:32 -0500 |
commit | a701cce8e0959503156a010683f6d0d57beaae36 (patch) | |
tree | c9a3850ea63474f83fe2150fb71fb798ad71d001 /indra/newview/gltf/asset.h | |
parent | 170765fd3505410dced83b342f87030fd9151e35 (diff) |
#1357 Preserve asset "extras" and switch to std::shared_ptr for referencing Asset from LLViewerObject to cut down rebuild time
Diffstat (limited to 'indra/newview/gltf/asset.h')
-rw-r--r-- | indra/newview/gltf/asset.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/gltf/asset.h b/indra/newview/gltf/asset.h index cb28c4a572..5a62313705 100644 --- a/indra/newview/gltf/asset.h +++ b/indra/newview/gltf/asset.h @@ -265,7 +265,7 @@ namespace LL }; // C++ representation of a GLTF Asset - class Asset : public LLRefCount + class Asset { public: std::vector<Scene> mScenes; @@ -287,6 +287,8 @@ namespace LL std::string mCopyright; S32 mDefaultScene = INVALID_INDEX; + tinygltf::Value mExtras; + // the last time update() was called according to gFrameTimeSeconds F32 mLastUpdateTime = gFrameTimeSeconds; |