summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_platform.h
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-03-09 10:41:52 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-04-19 08:35:59 +0300
commit0088981c4048c1779980a694986d715b11be1a45 (patch)
treeed8c5f309ad767a7b4e35b558fd65ee081298023 /editor/export/editor_export_platform.h
parent1b4b8934e080ec5300c78547527517f4a5b733e9 (diff)
downloadredot-engine-0088981c4048c1779980a694986d715b11be1a45.tar.gz
[Export] Add readable descriptions and validation warnings to the export options.
Diffstat (limited to 'editor/export/editor_export_platform.h')
-rw-r--r--editor/export/editor_export_platform.h11
1 files changed, 7 insertions, 4 deletions
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<ExportOption> *r_options) = 0;
+ virtual void get_export_options(List<ExportOption> *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<StringName, Variant> &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;