Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patched to compile with latest version of xatlas and Godot 3.2 #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter
Filter file types
Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.

Always

Just for now

Next
Patched to compile with latest version of xatlas and Godot 3.2
  • Loading branch information
SaracenOne committed Feb 4, 2021
commit 3264e219a98f426ed0efb9248e787e2bf335f389
@@ -805,8 +805,7 @@ void MeshMergeMaterialRepack::_generate_atlas(const int32_t p_num_meshes, Vector
meshDecl.indexData = indexes.ptr();
meshDecl.indexFormat = xatlas::IndexFormat::UInt32;
meshDecl.faceMaterialData = materials.ptr();
meshDecl.rotateCharts = false;
xatlas::AddMeshError::Enum error = xatlas::AddUvMesh(atlas, meshDecl);
xatlas::AddMeshError error = xatlas::AddUvMesh(atlas, meshDecl);
ERR_CONTINUE_MSG(error != xatlas::AddMeshError::Success, String("Error adding mesh ") + itos(mesh_i) + String(": ") + xatlas::StringForEnum(error));
mesh_count++;
}
@@ -817,6 +816,7 @@ void MeshMergeMaterialRepack::_generate_atlas(const int32_t p_num_meshes, Vector
pack_options.bruteForce = true;
pack_options.blockAlign = true;
pack_options.resolution = 2048;
pack_options.rotateCharts = false;
xatlas::PackCharts(atlas, pack_options);
}

@@ -958,7 +958,7 @@ void MeshMergeMaterialRepack::map_mesh_to_index_to_material(const Vector<MeshSta
Array mesh = array_mesh->surface_get_arrays(j);
Array uvs = mesh[ArrayMesh::ARRAY_TEX_UV];
if (!uvs.size()) {
array_mesh->mesh_unwrap(Transform(), 2.0f);
array_mesh->lightmap_unwrap(Transform(), 2.0f);
break;
}
}
ProTip! Use n and p to navigate between commits in a pull request.