|
@@ -2345,7 +2345,13 @@ void EditorFileSystem::reimport_files(const Vector<String> &p_files) {
|
|
|
|
|
|
Error EditorFileSystem::reimport_append(const String &p_file, const HashMap<StringName, Variant> &p_custom_options, const String &p_custom_importer, Variant p_generator_parameters) {
|
|
|
ERR_FAIL_COND_V_MSG(!importing, ERR_INVALID_PARAMETER, "Can only append files to import during a current reimport process.");
|
|
|
- return _reimport_file(p_file, p_custom_options, p_custom_importer, &p_generator_parameters);
|
|
|
+ Error ret = _reimport_file(p_file, p_custom_options, p_custom_importer, &p_generator_parameters);
|
|
|
+
|
|
|
+ // Emit the resource_reimported signal for the single file we just reimported.
|
|
|
+ Vector<String> reloads;
|
|
|
+ reloads.append(p_file);
|
|
|
+ emit_signal(SNAME("resources_reimported"), reloads);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
Error EditorFileSystem::_resource_import(const String &p_path) {
|