diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2021-03-23 15:49:00 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-03-23 15:49:30 +0100 |
| commit | 7ed2220928f1757fa6627f2d6af77c0e7f969081 (patch) | |
| tree | c62fe70fa92afdeda1c9f3d09f79474bae1472b1 /editor/editor_node.cpp | |
| parent | 538daf673107922e3af99ad6c22ff3f3baf883cb (diff) | |
| download | redot-engine-7ed2220928f1757fa6627f2d6af77c0e7f969081.tar.gz | |
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.
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 756f1d208f..4cc7c91d38 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -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); |
