aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2016-06-06 20:07:30 -0300
committerJuan Linietsky2016-06-06 20:07:30 -0300
commit9df4c1885362103baef02f01bf2012d8aa64e0a0 (patch)
tree22f6927645cffa0681174bbcd58b1105b1a55bfd /tools/editor/editor_node.cpp
parentc42651c39e80478594f5fef0c852faaaf498009d (diff)
parent1dab0aab7ce40cc421136a281898d106db2a0a06 (diff)
downloadgodot-9df4c1885362103baef02f01bf2012d8aa64e0a0.tar.gz
godot-9df4c1885362103baef02f01bf2012d8aa64e0a0.tar.zst
godot-9df4c1885362103baef02f01bf2012d8aa64e0a0.zip
Merge pull request #5056 from SaracenOne/bitmask_import_plugin
Bitmask import plugin
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r--tools/editor/editor_node.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index 16614b5d2..743ba0532 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -106,6 +106,7 @@
#include "tools/editor/io_plugins/editor_font_import_plugin.h"
#include "tools/editor/io_plugins/editor_sample_import_plugin.h"
#include "tools/editor/io_plugins/editor_translation_import_plugin.h"
+#include "tools/editor/io_plugins/editor_bitmask_import_plugin.h"
#include "tools/editor/io_plugins/editor_mesh_import_plugin.h"
#include "tools/editor/io_plugins/editor_export_scene.h"
@@ -6365,6 +6366,8 @@ EditorNode::EditorNode() {
editor_import_export->add_import_plugin( Ref<EditorFontImportPlugin>( memnew(EditorFontImportPlugin(this))));
editor_import_export->add_import_plugin( Ref<EditorSampleImportPlugin>( memnew(EditorSampleImportPlugin(this))));
editor_import_export->add_import_plugin( Ref<EditorTranslationImportPlugin>( memnew(EditorTranslationImportPlugin(this))));
+ editor_import_export->add_import_plugin( Ref<EditorBitMaskImportPlugin>( memnew(EditorBitMaskImportPlugin(this))));
+
editor_import_export->add_export_plugin( Ref<EditorTextureExportPlugin>( memnew(EditorTextureExportPlugin)));
editor_import_export->add_export_plugin( Ref<EditorSampleExportPlugin>( memnew(EditorSampleExportPlugin)));