mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Change ClassDB::get_class_list and related stuff.
This commit is contained in:
parent
99a39ce6ea
commit
a50fc5acd8
23 changed files with 155 additions and 150 deletions
|
@ -81,9 +81,9 @@ void CreateDialog::for_inherit() {
|
|||
}
|
||||
|
||||
void CreateDialog::_fill_type_list() {
|
||||
List<StringName> complete_type_list;
|
||||
ClassDB::get_class_list(&complete_type_list);
|
||||
ScriptServer::get_global_class_list(&complete_type_list);
|
||||
LocalVector<StringName> complete_type_list;
|
||||
ClassDB::get_class_list(complete_type_list);
|
||||
ScriptServer::get_global_class_list(complete_type_list);
|
||||
|
||||
EditorData &ed = EditorNode::get_editor_data();
|
||||
HashMap<String, DocData::ClassDoc> &class_docs_list = EditorHelp::get_doc_data()->class_list;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue