summaryrefslogtreecommitdiffstats
path: root/platform/windows/export/export_plugin.h
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-01-22 22:50:40 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-01-22 22:56:58 +0200
commit3bf05c90188a7839971ab4e0835e95253aa29825 (patch)
tree0400290bcb1dc836865440ac58ecfd5fa0c276ef /platform/windows/export/export_plugin.h
parent02f3e3346ae00a3d5e9a3d2a05bb5a513a70dc10 (diff)
downloadredot-engine-3bf05c90188a7839971ab4e0835e95253aa29825.tar.gz
[Export] Instead of removing unsupported options, hide it.
Diffstat (limited to 'platform/windows/export/export_plugin.h')
-rw-r--r--platform/windows/export/export_plugin.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/platform/windows/export/export_plugin.h b/platform/windows/export/export_plugin.h
index 4ec9342cdf..351333aa42 100644
--- a/platform/windows/export/export_plugin.h
+++ b/platform/windows/export/export_plugin.h
@@ -43,9 +43,10 @@ class EditorExportPlatformWindows : public EditorExportPlatformPC {
Error _code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path);
public:
- virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0);
- virtual Error sign_shared_object(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path);
- virtual void get_export_options(List<ExportOption> *r_options);
+ virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override;
+ virtual Error sign_shared_object(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path) override;
+ virtual void get_export_options(List<ExportOption> *r_options) override;
+ virtual bool get_export_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const override;
};
#endif