summaryrefslogtreecommitdiffstats
path: root/editor/fbx_importer_manager.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-30 23:42:11 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-30 23:42:11 +0200
commit77288392478407f873d20e0edb44eedcf376b74f (patch)
tree71a85297fed099841ba56b093ab4cf72f2d70577 /editor/fbx_importer_manager.cpp
parent6b38be699d56eec119d955c700c853ba3053cca9 (diff)
downloadredot-engine-77288392478407f873d20e0edb44eedcf376b74f.tar.gz
Rename FBX2glTF binary path setting back to 4.2 name
This preserves compatibility when upgrading Godot 4.2 projects which relied on that path being configured in the editor settings. The old name also makes sense for this one, it's fine for fbx2gltf_path to be under a generic fbx category which could have more settings also impacting ufbx.
Diffstat (limited to 'editor/fbx_importer_manager.cpp')
-rw-r--r--editor/fbx_importer_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/fbx_importer_manager.cpp b/editor/fbx_importer_manager.cpp
index f9673771e1..1fded345c8 100644
--- a/editor/fbx_importer_manager.cpp
+++ b/editor/fbx_importer_manager.cpp
@@ -50,7 +50,7 @@ void FBXImporterManager::_notification(int p_what) {
}
void FBXImporterManager::show_dialog(bool p_exclusive) {
- String fbx2gltf_path = EDITOR_GET("filesystem/import/fbx2gltf/fbx2gltf_path");
+ String fbx2gltf_path = EDITOR_GET("filesystem/import/fbx/fbx2gltf_path");
fbx_path->set_text(fbx2gltf_path);
_validate_path(fbx2gltf_path);
@@ -109,7 +109,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/fbx2gltf/fbx2gltf_path", path);
+ EditorSettings::get_singleton()->set("filesystem/import/fbx/fbx2gltf_path", path);
EditorSettings::get_singleton()->save();
}