summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-21 23:18:59 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-21 23:18:59 +0200
commit03aa82849d2637f027c2ad3e8af69e27c0aca823 (patch)
tree9adbafe84052f7398a2bb5f2edbfb73fe164fbd7 /modules
parent7ecf3eb4373170b2538cda13fb9f83244c01ffee (diff)
parentc433754d3483515aab7a4201f12f83fcbd1050b3 (diff)
downloadredot-engine-03aa82849d2637f027c2ad3e8af69e27c0aca823.tar.gz
Merge pull request #92197 from lyuma/better_fbx_defaults
FBX: Change trimming default and use FBX2glTF for compatibility
Diffstat (limited to 'modules')
-rw-r--r--modules/fbx/editor/editor_scene_importer_ufbx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/fbx/editor/editor_scene_importer_ufbx.cpp b/modules/fbx/editor/editor_scene_importer_ufbx.cpp
index 3cc919fae2..e0f60fe998 100644
--- a/modules/fbx/editor/editor_scene_importer_ufbx.cpp
+++ b/modules/fbx/editor/editor_scene_importer_ufbx.cpp
@@ -111,7 +111,7 @@ void EditorSceneFormatImporterUFBX::get_import_options(const String &p_path,
void EditorSceneFormatImporterUFBX::handle_compatibility_options(HashMap<StringName, Variant> &p_import_params) const {
if (!p_import_params.has("fbx/importer")) {
- p_import_params["fbx/importer"] = EditorSceneFormatImporterUFBX::FBX_IMPORTER_UFBX;
+ p_import_params["fbx/importer"] = EditorSceneFormatImporterUFBX::FBX_IMPORTER_FBX2GLTF;
}
}