diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2024-02-16 05:25:15 -0800 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-23 22:33:04 +0100 |
commit | 04d43947bff4de9db8d7005862a1d895b6703fbc (patch) | |
tree | e060417820e6e3f51bb144260fa7122e68bfe7eb /editor/fbx_importer_manager.cpp | |
parent | 2fe8f07b6c1156803e860519f37c269e394c699e (diff) | |
download | redot-engine-04d43947bff4de9db8d7005862a1d895b6703fbc.tar.gz |
Add ufbx for FBX importing
This update introduces a new import method for FBX files using ufbx. If the fbx2gltf import fails, it will use the most recently cached scene from the ufbx import. The process is sped up by introducing threads to load the ufbx portion.
Key changes include:
- Support for importing geometry helper nodes in FBX files.
- Addition of cameras and lights with updated names.
- Removal of the fbx importer manager.
- Introduction of ModelDocument3D and updates to its methods.
- Changes to FBX import options and visibility.
- Updating the documentation and handling some errors.
- Store the original non-unique node, mesh and animation names in FBX and glTF.
Co-Authored-By: bqqbarbhg <bqqbarbhg@gmail.com>
Diffstat (limited to 'editor/fbx_importer_manager.cpp')
-rw-r--r-- | editor/fbx_importer_manager.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editor/fbx_importer_manager.cpp b/editor/fbx_importer_manager.cpp index 7199ef3842..07854af23e 100644 --- a/editor/fbx_importer_manager.cpp +++ b/editor/fbx_importer_manager.cpp @@ -46,7 +46,7 @@ void FBXImporterManager::_notification(int p_what) { } void FBXImporterManager::show_dialog(bool p_exclusive) { - String fbx2gltf_path = EDITOR_GET("filesystem/import/fbx/fbx2gltf_path"); + String fbx2gltf_path = EDITOR_GET("filesystem/import/fbx2gltf/fbx2gltf_path"); fbx_path->set_text(fbx2gltf_path); _validate_path(fbx2gltf_path); @@ -56,8 +56,8 @@ void FBXImporterManager::show_dialog(bool p_exclusive) { set_close_on_escape(!p_exclusive); if (is_importing) { - get_cancel_button()->set_text(TTR("Disable FBX & Restart")); - get_cancel_button()->set_tooltip_text(TTR("Canceling this dialog will disable the FBX importer.\nYou can re-enable it in the Project Settings under Filesystem > Import > FBX > Enabled.\n\nThe editor will restart as importers are registered when the editor starts.")); + get_cancel_button()->set_text(TTR("Disable FBX2glTF & Restart")); + get_cancel_button()->set_tooltip_text(TTR("Canceling this dialog will disable the FBX2glTF importer and use the ufbx importer.\nYou can re-enable FBX2glTF in the Project Settings under Filesystem > Import > FBX > Enabled.\n\nThe editor will restart as importers are registered when the editor starts.")); } else { get_cancel_button()->set_text(TTR("Cancel")); get_cancel_button()->set_tooltip_text(""); @@ -105,7 +105,7 @@ void FBXImporterManager::_select_file(const String &p_path) { void FBXImporterManager::_path_confirmed() { String path = fbx_path->get_text(); - EditorSettings::get_singleton()->set("filesystem/import/fbx/fbx2gltf_path", path); + EditorSettings::get_singleton()->set("filesystem/import/fbx2gltf/fbx2gltf_path", path); EditorSettings::get_singleton()->save(); } @@ -114,7 +114,7 @@ void FBXImporterManager::_cancel_setup() { return; // No worry. } // No escape. - ProjectSettings::get_singleton()->set("filesystem/import/fbx/enabled", false); + ProjectSettings::get_singleton()->set("filesystem/import/fbx2gltf/enabled", false); ProjectSettings::get_singleton()->save(); EditorNode::get_singleton()->save_all_scenes(); EditorNode::get_singleton()->restart_editor(); @@ -136,7 +136,7 @@ FBXImporterManager::FBXImporterManager() { set_title(TTR("Configure FBX Importer")); VBoxContainer *vb = memnew(VBoxContainer); - vb->add_child(memnew(Label(TTR("FBX2glTF is required for importing FBX files.\nPlease download it and provide a valid path to the binary:")))); + vb->add_child(memnew(Label(TTR("FBX2glTF is required for importing FBX files if using FBX2glTF.\nAlternatively, you can use ufbx by disabling FBX2glTF.\nPlease download the necessary tool and provide a valid path to the binary:")))); LinkButton *lb = memnew(LinkButton); lb->set_text(TTR("Click this link to download FBX2glTF")); lb->set_uri("https://godotengine.org/fbx-import"); |