diff options
author | Andreas Raddau <and.rad@posteo.de> | 2023-05-10 11:40:17 +0200 |
---|---|---|
committer | Andreas Raddau <and.rad@posteo.de> | 2023-05-10 11:40:17 +0200 |
commit | fab160ce70fffa4fc1eed302c4ddd2a9c7882c93 (patch) | |
tree | 94e54926f77875477633ee3823cd520d8c0d6a25 /editor/export/editor_export_preset.h | |
parent | 668cf3c66f42989949399f36e9faa29426e37416 (diff) | |
download | redot-engine-fab160ce70fffa4fc1eed302c4ddd2a9c7882c93.tar.gz |
Store sensitive export options in dedicated credentials file
Diffstat (limited to 'editor/export/editor_export_preset.h')
-rw-r--r-- | editor/export/editor_export_preset.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/export/editor_export_preset.h b/editor/export/editor_export_preset.h index 003e3c05a3..194858b4e8 100644 --- a/editor/export/editor_export_preset.h +++ b/editor/export/editor_export_preset.h @@ -152,6 +152,8 @@ public: void set_script_encryption_key(const String &p_key); String get_script_encryption_key() const; + Variant get_or_env(const StringName &p_name, const String &p_env_var, bool *r_valid = nullptr) const; + const List<PropertyInfo> &get_properties() const { return properties; } EditorExportPreset(); |