diff options
author | kobewi <kobewi4e@gmail.com> | 2022-12-25 15:08:32 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-01-16 10:16:30 +0100 |
commit | 6444c7d1271e1dfa589edb7bb8a9f4cf181909ad (patch) | |
tree | c16202ebf03424dd014b0e68dadd3b4ed42b5af3 /editor/export | |
parent | 0f0b853c988f2c3ff322d8eaf97dd4f8d5de46c8 (diff) |
Move global script class cache to separate file
Diffstat (limited to 'editor/export')
-rw-r--r-- | editor/export/editor_export_platform.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp index 6478f99fb1..cacd181ad8 100644 --- a/editor/export/editor_export_platform.cpp +++ b/editor/export/editor_export_platform.cpp @@ -786,6 +786,7 @@ Error EditorExportPlatform::export_project_files(const Ref<EditorExportPreset> & HashSet<String> paths; Vector<String> path_remaps; + paths.insert(ProjectSettings::get_singleton()->get_project_data_path().path_join("global_script_class_cache.cfg")); if (p_preset->get_export_filter() == EditorExportPreset::EXPORT_ALL_RESOURCES) { //find stuff _export_find_resources(EditorFileSystem::get_singleton()->get_filesystem(), paths); |