summaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-06-08 07:58:06 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-06-08 07:58:06 -0300
commit47944098c2fbebc62fde33d4a86e6a923cb547e9 (patch)
treeeb2e07101d071c6a819f53a444b005308dea5b69 /tools/editor/editor_node.cpp
parent32fa1e3ee6f94d6bc1fc5aaa604c7461428f63f3 (diff)
parente4a24812cd3fa6d6fb9f0ba440e01c84642204ac (diff)
Merge pull request #5007 from bojidar-bg/asset-store
Update asset library editor plugin, adding a bit new functionality and fixes
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r--tools/editor/editor_node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index 8dd579b06c..d63a010272 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -61,7 +61,7 @@
#include "plugins/sprite_frames_editor_plugin.h"
#include "plugins/texture_region_editor_plugin.h"
#include "plugins/canvas_item_editor_plugin.h"
-#include "addon_editor_plugin.h"
+#include "asset_library_editor_plugin.h"
#include "plugins/spatial_editor_plugin.h"
#include "plugins/sample_editor_plugin.h"
#include "plugins/texture_editor_plugin.h"
@@ -6381,7 +6381,7 @@ EditorNode::EditorNode() {
add_editor_plugin( memnew( CanvasItemEditorPlugin(this) ) );
add_editor_plugin( memnew( SpatialEditorPlugin(this) ) );
add_editor_plugin( memnew( ScriptEditorPlugin(this) ) );
- //add_editor_plugin( memnew( AddonEditorPlugin(this) ) );
+ add_editor_plugin( memnew( AssetLibraryEditorPlugin(this) ) );
//more visually meaningful to have this later
raise_bottom_panel_item(AnimationPlayerEditor::singleton);