Remove now unnecessary ResourceImporterCSV importer
Its only purpose was to prevent importing CSV files as translations, but it would still import them as *nothing*, leading to workflow issues. This is now properly fixed with #47268 which allows disabling the import for specific files.
This commit is contained in:
parent
538daf6731
commit
7ed2220928
3 changed files with 0 additions and 138 deletions
|
|
@ -92,7 +92,6 @@
|
|||
#include "editor/filesystem_dock.h"
|
||||
#include "editor/import/editor_import_collada.h"
|
||||
#include "editor/import/resource_importer_bitmask.h"
|
||||
#include "editor/import/resource_importer_csv.h"
|
||||
#include "editor/import/resource_importer_csv_translation.h"
|
||||
#include "editor/import/resource_importer_image.h"
|
||||
#include "editor/import/resource_importer_layered_texture.h"
|
||||
|
|
@ -5779,10 +5778,6 @@ EditorNode::EditorNode() {
|
|||
import_csv_translation.instance();
|
||||
ResourceFormatImporter::get_singleton()->add_importer(import_csv_translation);
|
||||
|
||||
Ref<ResourceImporterCSV> import_csv;
|
||||
import_csv.instance();
|
||||
ResourceFormatImporter::get_singleton()->add_importer(import_csv);
|
||||
|
||||
Ref<ResourceImporterWAV> import_wav;
|
||||
import_wav.instance();
|
||||
ResourceFormatImporter::get_singleton()->add_importer(import_wav);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue