From 51af186bb63b083d6ff878916e324176d706d0f1 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 13 Mar 2024 23:56:05 +0100 Subject: Default to trimesh for generated collision shapes in Advanced Import Settings This avoids using convex decomposition every time collision is enabled on a mesh, which can be extremely slow on complex meshes (such as entire levels). --- editor/import/3d/resource_importer_scene.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editor/import/3d/resource_importer_scene.h') diff --git a/editor/import/3d/resource_importer_scene.h b/editor/import/3d/resource_importer_scene.h index 2e682350bc..6de9d26d13 100644 --- a/editor/import/3d/resource_importer_scene.h +++ b/editor/import/3d/resource_importer_scene.h @@ -322,7 +322,7 @@ public: template Vector> ResourceImporterScene::get_collision_shapes(const Ref &p_mesh, const M &p_options, float p_applied_root_scale) { ERR_FAIL_COND_V(p_mesh.is_null(), Vector>()); - ShapeType generate_shape_type = SHAPE_TYPE_DECOMPOSE_CONVEX; + ShapeType generate_shape_type = SHAPE_TYPE_TRIMESH; if (p_options.has(SNAME("physics/shape_type"))) { generate_shape_type = (ShapeType)p_options[SNAME("physics/shape_type")].operator int(); } @@ -480,7 +480,7 @@ template Transform3D ResourceImporterScene::get_collision_shapes_transform(const M &p_options) { Transform3D transform; - ShapeType generate_shape_type = SHAPE_TYPE_DECOMPOSE_CONVEX; + ShapeType generate_shape_type = SHAPE_TYPE_TRIMESH; if (p_options.has(SNAME("physics/shape_type"))) { generate_shape_type = (ShapeType)p_options[SNAME("physics/shape_type")].operator int(); } -- cgit v1.2.3