diff options
| author | Juan Linietsky | 2018-01-06 16:36:49 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2018-01-06 16:38:36 -0300 |
| commit | 50b975548dcd65a9506e7fb449d40404320c0983 (patch) | |
| tree | abc9f7287fb6a0d539de897ca69c318c0cbdb8f7 /editor/editor_node.cpp | |
| parent | b6989d0b511ef4003d33f5987a5dafc45cb3a1cf (diff) | |
| download | godot-50b975548dcd65a9506e7fb449d40404320c0983.tar.gz godot-50b975548dcd65a9506e7fb449d40404320c0983.tar.zst godot-50b975548dcd65a9506e7fb449d40404320c0983.zip | |
Removed PBM bitmap loader, added abiliy to importi mages as bitmap. Fixes #14828
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 860969751..70047bc60 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -60,6 +60,7 @@ #include "editor/editor_themes.h" #include "editor/import/editor_import_collada.h" #include "editor/import/editor_scene_importer_gltf.h" +#include "editor/import/resource_importer_bitmask.h" #include "editor/import/resource_importer_csv_translation.h" #include "editor/import/resource_importer_obj.h" #include "editor/import/resource_importer_scene.h" @@ -4815,6 +4816,10 @@ EditorNode::EditorNode() { import_gltf.instance(); import_scene->add_importer(import_gltf); } + + Ref<ResourceImporterBitMap> import_bitmap; + import_bitmap.instance(); + ResourceFormatImporter::get_singleton()->add_importer(import_bitmap); } _pvrtc_register_compressors(); |
