diff options
| author | Saracen | 2016-06-05 19:11:57 +0100 |
|---|---|---|
| committer | Saracen | 2016-06-05 19:14:39 +0100 |
| commit | 1dab0aab7ce40cc421136a281898d106db2a0a06 (patch) | |
| tree | ea5c078de207c515557bd383c85c9c4e999bfd3f /tools/editor/editor_node.cpp | |
| parent | a0ac4293c17d08ca985a54247c73aa6cd183fe0f (diff) | |
| download | godot-1dab0aab7ce40cc421136a281898d106db2a0a06.tar.gz godot-1dab0aab7ce40cc421136a281898d106db2a0a06.tar.zst godot-1dab0aab7ce40cc421136a281898d106db2a0a06.zip | |
Bitmask import plugin
Diffstat (limited to 'tools/editor/editor_node.cpp')
| -rw-r--r-- | tools/editor/editor_node.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 72d5e496d..be36369a6 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" @@ -6352,6 +6353,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))); |
