Merge pull request #104281 from mihe/clear-static-gdscript-cache

Add clearing of `static_gdscript_cache` to `GDScriptCache`
This commit is contained in:
Rémi Verschelde 2025-03-18 13:50:20 +01:00
commit 500d005702
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -485,6 +485,7 @@ void GDScriptCache::clear() {
parser_map_refs.clear();
singleton->shallow_gdscript_cache.clear();
singleton->full_gdscript_cache.clear();
singleton->static_gdscript_cache.clear();
}
GDScriptCache::GDScriptCache() {