feat: updated engine version to 4.4-rc1

This commit is contained in:
Sara 2025-02-23 14:38:14 +01:00
parent ee00efde1f
commit 21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions

View file

@ -303,6 +303,7 @@ class ThemeTypeDialog : public ConfirmationDialog {
void _update_add_type_options(const String &p_filter = "");
void _add_type_filter_cbk(const String &p_value);
void _type_filter_input(const Ref<InputEvent> &p_event);
void _add_type_options_cbk(int p_index);
void _add_type_dialog_entered(const String &p_value);
void _add_type_dialog_activated(int p_index);
@ -444,6 +445,7 @@ class ThemeEditor : public VBoxContainer {
void _theme_save_button_cbk(bool p_save_as);
void _theme_edit_button_cbk();
void _theme_close_button_cbk();
void _scene_closed(const String &p_path);
void _add_preview_button_cbk();
void _preview_scene_dialog_cbk(const String &p_path);
@ -461,6 +463,9 @@ public:
void edit(const Ref<Theme> &p_theme);
Ref<Theme> get_edited_theme();
bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
ThemeEditor();
};
@ -471,7 +476,7 @@ class ThemeEditorPlugin : public EditorPlugin {
Button *button = nullptr;
public:
virtual String get_name() const override { return "Theme"; }
virtual String get_plugin_name() const override { return "Theme"; }
bool has_main_screen() const override { return false; }
virtual void edit(Object *p_object) override;
virtual bool handles(Object *p_object) const override;