From b3d1aeea0749c8cff87aa942a24f51c0adc36087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 29 Jun 2023 12:48:10 +0200 Subject: [PATCH] Fix missing GDExtension in-editor API reference This commit partially reverts a change in e1ce0340b78875a864d449a5e3e38e4535e9a800 which would prevent from generating API reference for GDExtension APIs. Fixes #78829. --- editor/doc_tools.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/editor/doc_tools.cpp b/editor/doc_tools.cpp index 91358c3475c..780b3169b44 100644 --- a/editor/doc_tools.cpp +++ b/editor/doc_tools.cpp @@ -374,11 +374,6 @@ void DocTools::generate(bool p_basic_types) { classes.pop_front(); continue; } - if (ClassDB::get_api_type(name) != ClassDB::API_CORE && ClassDB::get_api_type(name) != ClassDB::API_EDITOR) { - print_verbose(vformat("Class '%s' belongs neither to core nor editor, skipping.", name)); - classes.pop_front(); - continue; - } String cname = name; // Property setters and getters do not get exposed as individual methods.