summaryrefslogtreecommitdiff
path: root/editor/import
diff options
context:
space:
mode:
Diffstat (limited to 'editor/import')
-rw-r--r--editor/import/resource_importer_obj.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/import/resource_importer_obj.cpp b/editor/import/resource_importer_obj.cpp
index 9bb598ec92..25548f7899 100644
--- a/editor/import/resource_importer_obj.cpp
+++ b/editor/import/resource_importer_obj.cpp
@@ -395,6 +395,10 @@ Node *EditorOBJImporter::import_scene(const String &p_path, uint32_t p_flags, in
if (!material_map.has(current_material_library)) {
Map<String, Ref<SpatialMaterial> > lib;
Error err = _parse_material_library(current_material_library, lib, r_missing_deps);
+ if (err == ERR_CANT_OPEN) {
+ String dir = p_path.get_base_dir();
+ err = _parse_material_library(dir.plus_file(current_material_library), lib, r_missing_deps);
+ }
if (err == OK) {
material_map[current_material_library] = lib;
}