We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe77e5e + 06b2c9f commit 4f56d0dCopy full SHA for 4f56d0d
editor/import/3d/resource_importer_scene.cpp
@@ -2877,8 +2877,7 @@ Error ResourceImporterScene::_check_resource_save_paths(const Dictionary &p_data
2877
const Dictionary &settings = p_data[keys[i]];
2878
2879
if (bool(settings.get("save_to_file/enabled", false)) && settings.has("save_to_file/path")) {
2880
- const String &save_path = settings["save_to_file/path"];
2881
-
+ const String save_path = ResourceUID::ensure_path(settings["save_to_file/path"]);
2882
ERR_FAIL_COND_V(!save_path.is_empty() && !DirAccess::exists(save_path.get_base_dir()), ERR_FILE_BAD_PATH);
2883
}
2884
0 commit comments