summaryrefslogtreecommitdiffstats
path: root/modules/fbx/fbx_state.h
diff options
context:
space:
mode:
authorbqqbarbhg <bqqbarbhg@gmail.com>2024-05-03 20:46:26 +0300
committerbqqbarbhg <bqqbarbhg@gmail.com>2024-05-03 20:46:26 +0300
commitb9ab0e46e2a1bbd2538dbc123e03297ab4944126 (patch)
tree4803e60976cd2ff04f7621cf5a693b27d6959db9 /modules/fbx/fbx_state.h
parent03e6fbb010c3546593bd91a0dabc045a9882705a (diff)
downloadredot-engine-b9ab0e46e2a1bbd2538dbc123e03297ab4944126.tar.gz
Fix handling missing skins using ufbx importer
Previously, _asset_parse_skins() would mess with the order of skin indices. However, the rest of the code expected these to match to ufbx skin indices. To fix this, retain the original skin indices in FBXState::original_skin_indices.
Diffstat (limited to 'modules/fbx/fbx_state.h')
-rw-r--r--modules/fbx/fbx_state.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/fbx/fbx_state.h b/modules/fbx/fbx_state.h
index d10550c228..e52f47e0db 100644
--- a/modules/fbx/fbx_state.h
+++ b/modules/fbx/fbx_state.h
@@ -53,6 +53,7 @@ class FBXState : public GLTFState {
HashMap<Pair<uint64_t, uint64_t>, GLTFTextureIndex, PairHash<uint64_t, uint64_t>> albedo_transparency_textures;
Vector<GLTFSkinIndex> skin_indices;
+ Vector<GLTFSkinIndex> original_skin_indices;
HashMap<ObjectID, GLTFSkeletonIndex> skeleton3d_to_fbx_skeleton;
HashMap<ObjectID, HashMap<ObjectID, GLTFSkinIndex>> skin_and_skeleton3d_to_fbx_skin;
HashSet<String> unique_mesh_names; // Not in GLTFState because GLTFState prefixes mesh names with the scene name (or _)