Generate export template file names instead of having a fixed set

This commit is contained in:
Aaron Franke 2022-03-22 09:40:34 -05:00
parent a30d17fe23
commit 13392a96e9
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
8 changed files with 14 additions and 49 deletions

View file

@ -49,6 +49,7 @@ public:
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;
virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const override;
virtual String get_template_file_name(const String &p_target, const String &p_arch) const override;
virtual Error fixup_embedded_pck(const String &p_path, int64_t p_embedded_start, int64_t p_embedded_size) const override;
};