Browse Source

Merge pull request #78830 from akien-mga/classref-fix-missing-gdextension-api

Fix missing GDExtension in-editor API reference
Rémi Verschelde 2 năm trước cách đây
mục cha
commit
f228fb715c
1 tập tin đã thay đổi với 0 bổ sung5 xóa
  1. 0 5
      editor/doc_tools.cpp

+ 0 - 5
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.