1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Rework scene creation dialog

This commit is contained in:
kobewi
2022-07-05 19:37:59 +02:00
parent 32ef964b0f
commit cda0692159
6 changed files with 448 additions and 52 deletions

View File

@@ -492,6 +492,13 @@ String CreateDialog::get_base_type() const {
return base_type;
}
void CreateDialog::select_base() {
if (search_options_types.empty()) {
_update_search();
}
select_type(base_type);
}
void CreateDialog::set_preferred_search_result_type(const String &p_preferred_type) {
preferred_search_result_type = p_preferred_type;
}