Merge pull request #47311 from RevoluPowered/fix-importer-bug
Fix use of Error its uninitialised and resolves importers being broken
This commit is contained in:
commit
0682422b1e
@ -1302,7 +1302,7 @@ Node *ResourceImporterScene::pre_import(const String &p_source_file) {
|
|||||||
|
|
||||||
ERR_FAIL_COND_V(!importer.is_valid(), nullptr);
|
ERR_FAIL_COND_V(!importer.is_valid(), nullptr);
|
||||||
|
|
||||||
Error err;
|
Error err = OK;
|
||||||
Node *scene = importer->import_scene(p_source_file, EditorSceneImporter::IMPORT_ANIMATION | EditorSceneImporter::IMPORT_GENERATE_TANGENT_ARRAYS, 15, nullptr, &err);
|
Node *scene = importer->import_scene(p_source_file, EditorSceneImporter::IMPORT_ANIMATION | EditorSceneImporter::IMPORT_GENERATE_TANGENT_ARRAYS, 15, nullptr, &err);
|
||||||
if (!scene || err != OK) {
|
if (!scene || err != OK) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user