Skip to content

Commit

Permalink
Fix missing GDExtension in-editor API reference
Browse files Browse the repository at this point in the history
This commit partially reverts a change in e1ce034
which would prevent from generating API reference for GDExtension APIs.

Fixes #78829.
  • Loading branch information
akien-mga committed Jun 29, 2023
1 parent c83f912 commit b3d1aee
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions editor/doc_tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit b3d1aee

Please sign in to comment.