diff options
Diffstat (limited to '')
| -rw-r--r-- | tools/editor/editor_node.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index d63a01027..269ecb103 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -6381,7 +6381,11 @@ EditorNode::EditorNode() { add_editor_plugin( memnew( CanvasItemEditorPlugin(this) ) ); add_editor_plugin( memnew( SpatialEditorPlugin(this) ) ); add_editor_plugin( memnew( ScriptEditorPlugin(this) ) ); +#ifdef OPENSSL_ENABLED add_editor_plugin( memnew( AssetLibraryEditorPlugin(this) ) ); +#else +#warning Asset Library will not compile without SSL +#endif //more visually meaningful to have this later raise_bottom_panel_item(AnimationPlayerEditor::singleton); |
