diff options
author | kobewi <kobewi4e@gmail.com> | 2023-02-19 21:05:16 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-02-20 17:39:38 +0100 |
commit | ff42cb0d1e8dda98b7657fd5e3ed6be16f0d280e (patch) | |
tree | 3209ce274e20cc25210648d0c3d32bd4538cf758 /core/config/project_settings.h | |
parent | 6f64349bfe42b795a6c50e9c2093d38e7a992e7a (diff) | |
download | redot-engine-ff42cb0d1e8dda98b7657fd5e3ed6be16f0d280e.tar.gz |
Fix missing directories when exporting from cmd
Diffstat (limited to 'core/config/project_settings.h')
-rw-r--r-- | core/config/project_settings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/config/project_settings.h b/core/config/project_settings.h index 50cb274831..a0249ef267 100644 --- a/core/config/project_settings.h +++ b/core/config/project_settings.h @@ -95,6 +95,7 @@ protected: String resource_path; HashMap<StringName, PropertyInfo> custom_prop_info; bool using_datapack = false; + bool project_loaded = false; List<String> input_presets; HashSet<String> custom_features; @@ -190,6 +191,7 @@ public: Variant get_setting_with_override(const StringName &p_name) const; bool is_using_datapack() const; + bool is_project_loaded() const; bool has_custom_feature(const String &p_feature) const; |