summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorJonathan "Geenz" Goodman <geenz@geenzo.com>2025-05-05 16:12:26 -0400
committerJonathan "Geenz" Goodman <geenz@geenzo.com>2025-05-05 16:12:26 -0400
commit47a5c7a41340a18d90a5a8724762ff32f9ac8afd (patch)
tree32f5f781e2a51daf0ece5a180cd3ad7b61daa2fc /indra/newview
parent629e56d864726eaa0340be220be8c3e3f500ca32 (diff)
Make sure we're pushing to the joints name set as well.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/gltf/llgltfloader.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/gltf/llgltfloader.cpp b/indra/newview/gltf/llgltfloader.cpp
index 26257dfc33..7f3f158fd7 100644
--- a/indra/newview/gltf/llgltfloader.cpp
+++ b/indra/newview/gltf/llgltfloader.cpp
@@ -230,6 +230,7 @@ void LLGLTFLoader::populateJointFromSkin(const LL::GLTF::Skin& skin)
jointNode.makeMatrixValid();
mJointList[jointNode.mName] = LLMatrix4(glm::value_ptr(jointNode.mMatrix));
+ mJointsFromNode.push_front(jointNode.mName);
}
}