summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2023-12-13 19:18:50 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2024-04-10 11:27:36 +0800
commit077e20cd518a8e2cac88eb6044dbdd962346903b (patch)
tree7b4193fbc85251ffa2d696124c3bde12c698a5d6
parent9d6bdbc56e0ac99a6cc3aaed1c114a6528cb87fc (diff)
downloadredot-engine-077e20cd518a8e2cac88eb6044dbdd962346903b.tar.gz
Disable mesh compression if vertex position.z is always 0
-rw-r--r--editor/import/3d/editor_import_collada.cpp11
-rw-r--r--editor/import/3d/resource_importer_obj.cpp15
-rw-r--r--modules/gltf/gltf_document.cpp12
3 files changed, 36 insertions, 2 deletions
diff --git a/editor/import/3d/editor_import_collada.cpp b/editor/import/3d/editor_import_collada.cpp
index 58aa6a462d..4b91b1431a 100644
--- a/editor/import/3d/editor_import_collada.cpp
+++ b/editor/import/3d/editor_import_collada.cpp
@@ -996,7 +996,16 @@ Error ColladaImport::_create_mesh_surfaces(bool p_optimize, Ref<ImporterMesh> &p
surftool->generate_tangents();
}
- if (p_mesh->get_blend_shape_count() != 0 || p_skin_controller) {
+ // Disable compression if all z equals 0 (the mesh is 2D).
+ bool is_mesh_2d = true;
+ for (int k = 0; k < vertex_array.size(); k++) {
+ if (!Math::is_zero_approx(vertex_array[k].vertex.z)) {
+ is_mesh_2d = false;
+ break;
+ }
+ };
+
+ if (p_mesh->get_blend_shape_count() != 0 || p_skin_controller || is_mesh_2d) {
// Can't compress if attributes missing or if using vertex weights.
mesh_flags &= ~RS::ARRAY_FLAG_COMPRESS_ATTRIBUTES;
}
diff --git a/editor/import/3d/resource_importer_obj.cpp b/editor/import/3d/resource_importer_obj.cpp
index 62643eaa25..242b483b51 100644
--- a/editor/import/3d/resource_importer_obj.cpp
+++ b/editor/import/3d/resource_importer_obj.cpp
@@ -384,7 +384,22 @@ static Error _parse_obj(const String &p_path, List<Ref<ImporterMesh>> &r_meshes,
if (p_disable_compression) {
mesh_flags = 0;
+ } else {
+ bool is_mesh_2d = true;
+
+ // Disable compression if all z equals 0 (the mesh is 2D).
+ for (int i = 0; i < vertices.size(); i++) {
+ if (!Math::is_zero_approx(vertices[i].z)) {
+ is_mesh_2d = false;
+ break;
+ }
+ }
+
+ if (is_mesh_2d) {
+ mesh_flags = 0;
+ }
}
+
//groups are too annoying
if (surf_tool->get_vertex_array().size()) {
//another group going on, commit it
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp
index 6e7ca370dd..9d57b036bc 100644
--- a/modules/gltf/gltf_document.cpp
+++ b/modules/gltf/gltf_document.cpp
@@ -3059,7 +3059,17 @@ Error GLTFDocument::_parse_meshes(Ref<GLTFState> p_state) {
array[Mesh::ARRAY_TANGENT] = tangents;
}
- if (p_state->force_disable_compression || !a.has("POSITION") || !a.has("NORMAL") || p.has("targets") || (a.has("JOINTS_0") || a.has("JOINTS_1"))) {
+ // Disable compression if all z equals 0 (the mesh is 2D).
+ const Vector<Vector3> &vertices = array[Mesh::ARRAY_VERTEX];
+ bool is_mesh_2d = true;
+ for (int k = 0; k < vertices.size(); k++) {
+ if (!Math::is_zero_approx(vertices[k].z)) {
+ is_mesh_2d = false;
+ break;
+ }
+ }
+
+ if (p_state->force_disable_compression || is_mesh_2d || !a.has("POSITION") || !a.has("NORMAL") || p.has("targets") || (a.has("JOINTS_0") || a.has("JOINTS_1"))) {
flags &= ~RS::ARRAY_FLAG_COMPRESS_ATTRIBUTES;
}