diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 8aa579d8730..382cf761818 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -5880,7 +5880,8 @@ EditorNode::EditorNode() { // Ref _fbxconv_import = memnew( EditorSceneImporterFBXConv); // _scene_import->add_importer(_fbxconv_import); editor_import_export->add_import_plugin( _scene_import); - editor_import_export->add_import_plugin( Ref( memnew(EditorSceneAnimationImportPlugin(this)))); + // TODO: This plugin has no code, it should be either implemented or dropped (GH-3667) + // editor_import_export->add_import_plugin( Ref( memnew(EditorSceneAnimationImportPlugin(this)))); editor_import_export->add_import_plugin( Ref( memnew(EditorMeshImportPlugin(this)))); editor_import_export->add_import_plugin( Ref( memnew(EditorFontImportPlugin(this)))); editor_import_export->add_import_plugin( Ref( memnew(EditorSampleImportPlugin(this))));