From 01cf698de7a6aa85459ea3dc8ebabec8135712f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 17 Feb 2016 22:17:34 +0100 Subject: [PATCH] Remove unimplemented SceneAnimationImport plugin from menu The code structure is still available if someone wanted to implement it. Issue #3667 will be kept as a reminder for the added todo. --- tools/editor/editor_node.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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))));