Skip to content

Commit

Permalink
custom models: increase default joint count (#3782)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hat-Kid authored Nov 27, 2024
1 parent 6a06291 commit f6c55eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion decompiler/level_extractor/merc_replacement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void extract(const std::string& name,
int mesh_count = 0;
int prim_count = 0;
bool has_envmaps = false;
int joints = 1;
int joints = 3;
auto skin_idx = find_single_skin(model, all_nodes);
if (skin_idx) {
joints = get_joint_count(model, *skin_idx);
Expand Down
2 changes: 1 addition & 1 deletion goalc/build_actor/common/MercExtract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void extract(const std::string& name,
int mesh_count = 0;
int prim_count = 0;
bool has_envmaps = false;
int joints = 1;
int joints = 3;
auto skin_idx = find_single_skin(model, all_nodes);
if (skin_idx) {
joints = gltf_util::get_joint_count(model, *skin_idx);
Expand Down

0 comments on commit f6c55eb

Please sign in to comment.