diff options
| author | eska <eska@eska.me> | 2017-03-28 03:21:21 +0200 |
|---|---|---|
| committer | eska <eska@eska.me> | 2017-03-29 13:27:43 +0200 |
| commit | 7df7e9cc8bbe25148698f4350123a42e17033881 (patch) | |
| tree | 1352fd16ae9cb0142f2ae7e3d0395e877716da90 /editor/editor_export.h | |
| parent | efaeebab4d83e5657288b7b20db6ce4ccf987a01 (diff) | |
| download | redot-engine-7df7e9cc8bbe25148698f4350123a42e17033881.tar.gz | |
WebGL 2 export per WebAssembly or asm.js
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; |
