Save last export path when exporting

This commit is contained in:
Marcelo Fernandez
2018-10-27 10:53:05 -03:00
parent 970b58148f
commit 9814446ea0
3 changed files with 28 additions and 5 deletions

View File

@ -57,6 +57,7 @@ private:
ExportFilter export_filter;
String include_filter;
String exclude_filter;
String export_path;
String exporter;
Set<String> selected_files;
@ -114,6 +115,9 @@ public:
void set_custom_features(const String &p_custom_features);
String get_custom_features() const;
void set_export_path(const String &p_path);
String get_export_path() const;
const List<PropertyInfo> &get_properties() const { return properties; }
EditorExportPreset();