Selaa lähdekoodia

Merge pull request #85159 from KoBeWi/404_strikes_back

Don't abort loading when `ext_resource` is missing
Rémi Verschelde 1 vuosi sitten
vanhempi
commit
ea15b4ad44
1 muutettua tiedostoa jossa 4 lisäystä ja 1 poistoa
  1. 4 1
      core/variant/variant_parser.cpp

+ 4 - 1
core/variant/variant_parser.cpp

@@ -1026,7 +1026,10 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream,
 				Ref<Resource> res;
 				Error err = p_res_parser->ext_func(p_res_parser->userdata, p_stream, res, line, r_err_str);
 				if (err) {
-					return err;
+					// If the file is missing, the error can be ignored.
+					if (err != ERR_FILE_NOT_FOUND && err != ERR_CANT_OPEN) {
+						return err;
+					}
 				}
 
 				value = res;