diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-01-22 22:50:40 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-01-22 22:56:58 +0200 |
commit | 3bf05c90188a7839971ab4e0835e95253aa29825 (patch) | |
tree | 0400290bcb1dc836865440ac58ecfd5fa0c276ef /platform/osx/export/export_plugin.h | |
parent | 02f3e3346ae00a3d5e9a3d2a05bb5a513a70dc10 (diff) | |
download | redot-engine-3bf05c90188a7839971ab4e0835e95253aa29825.tar.gz |
[Export] Instead of removing unsupported options, hide it.
Diffstat (limited to 'platform/osx/export/export_plugin.h')
-rw-r--r-- | platform/osx/export/export_plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/osx/export/export_plugin.h b/platform/osx/export/export_plugin.h index 85fc72437c..0c2ac90206 100644 --- a/platform/osx/export/export_plugin.h +++ b/platform/osx/export/export_plugin.h @@ -101,6 +101,7 @@ class EditorExportPlatformOSX : public EditorExportPlatform { protected: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) 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; public: virtual String get_name() const override { return "macOS"; } |