mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Improve reliability of editor docs cache
This commit is contained in:
parent
14c582bca8
commit
e1ce0340b7
4 changed files with 20 additions and 25 deletions
|
@ -374,6 +374,11 @@ 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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue