From 0088981c4048c1779980a694986d715b11be1a45 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Thu, 9 Mar 2023 10:41:52 +0200 Subject: [Export] Add readable descriptions and validation warnings to the export options. --- editor/export/editor_export_platform.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'editor/export/editor_export_platform.h') diff --git a/editor/export/editor_export_platform.h b/editor/export/editor_export_platform.h index 05d985eb6a..21d8719902 100644 --- a/editor/export/editor_export_platform.h +++ b/editor/export/editor_export_platform.h @@ -143,11 +143,13 @@ public: PropertyInfo option; Variant default_value; bool update_visibility = false; + bool required = false; - ExportOption(const PropertyInfo &p_info, const Variant &p_default, bool p_update_visibility = false) : + ExportOption(const PropertyInfo &p_info, const Variant &p_default, bool p_update_visibility = false, bool p_required = false) : option(p_info), default_value(p_default), - update_visibility(p_update_visibility) { + update_visibility(p_update_visibility), + required(p_required) { } ExportOption() {} }; @@ -196,9 +198,10 @@ public: virtual bool fill_log_messages(RichTextLabel *p_log, Error p_err); - virtual void get_export_options(List *r_options) = 0; + virtual void get_export_options(List *r_options) const = 0; virtual bool should_update_export_options() { return false; } - virtual bool get_export_option_visibility(const EditorExportPreset *p_preset, const String &p_option, const HashMap &p_options) const { return true; } + virtual bool get_export_option_visibility(const EditorExportPreset *p_preset, const String &p_option) const { return true; } + virtual String get_export_option_warning(const EditorExportPreset *p_preset, const StringName &p_name) const { return String(); } virtual String get_os_name() const = 0; virtual String get_name() const = 0; -- cgit v1.2.3