diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-10 12:12:18 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-10 12:12:18 -0600 |
commit | cd6dad4090967b2ed709f4ce82284b8d331cbe4e (patch) | |
tree | a1f1f53c7fd3edb944661cb49183a1553c74139c /modules/gltf/gltf_document.cpp | |
parent | 52ce3c7078d821c2e835495bb571bb5af5ab211d (diff) | |
parent | a59fb07e4ad09651a5a86857fe30689e85b5a772 (diff) | |
download | redot-engine-cd6dad4090967b2ed709f4ce82284b8d331cbe4e.tar.gz |
Merge pull request #98703 from pgrit/master
Set flag for 8 bone weights in GLTFDocument
Diffstat (limited to 'modules/gltf/gltf_document.cpp')
-rw-r--r-- | modules/gltf/gltf_document.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp index 571a04936d..aa482615da 100644 --- a/modules/gltf/gltf_document.cpp +++ b/modules/gltf/gltf_document.cpp @@ -3482,6 +3482,7 @@ Error GLTFDocument::_parse_meshes(Ref<GLTFState> p_state) { } } array[Mesh::ARRAY_WEIGHTS] = weights; + flags |= Mesh::ARRAY_FLAG_USE_8_BONE_WEIGHTS; } if (!indices.is_empty()) { |