Rework scene creation dialog

This commit is contained in:
kobewi
2022-06-12 02:11:52 +02:00
parent 40c360b870
commit a08d930740
6 changed files with 438 additions and 50 deletions

View File

@ -474,6 +474,13 @@ void CreateDialog::select_type(const String &p_type, bool p_center_on_item) {
get_ok_button()->set_disabled(false);
}
void CreateDialog::select_base() {
if (search_options_types.is_empty()) {
_update_search();
}
select_type(base_type, false);
}
String CreateDialog::get_selected_type() {
TreeItem *selected = search_options->get_selected();
if (!selected) {