diff options
Diffstat (limited to 'editor/editor_export.h')
-rw-r--r-- | editor/editor_export.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_export.h b/editor/editor_export.h index 1c9f5b3354..966c3cb63b 100644 --- a/editor/editor_export.h +++ b/editor/editor_export.h @@ -76,6 +76,7 @@ protected: public: Ref<EditorExportPlatform> get_platform() const; + bool has(const StringName &p_property) const { return values.has(p_property); } Vector<String> get_files_to_export() const; @@ -170,6 +171,8 @@ public: virtual Ref<EditorExportPreset> create_preset(); virtual void get_export_options(List<ExportOption> *r_options) = 0; + virtual bool get_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const { return true; } + virtual String get_name() const = 0; virtual Ref<Texture> get_logo() const = 0; |