diff options
author | Andreas Haas <liu.gam3@gmail.com> | 2017-07-18 23:21:51 +0200 |
---|---|---|
committer | Andreas Haas <liu.gam3@gmail.com> | 2017-07-21 20:59:22 +0200 |
commit | 0bc5fca4d5a743cb5575a968e097da4add81109f (patch) | |
tree | 413a331ee48c48d502a867c442a7a6b4f8e2fd60 /editor/import/resource_importer_obj.cpp | |
parent | 9cf72d0ae174badab07b1461f576955725375046 (diff) |
OBJ Importer: Fix relative path materials.
Diffstat (limited to 'editor/import/resource_importer_obj.cpp')
-rw-r--r-- | editor/import/resource_importer_obj.cpp | 4 |
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; } |