1
0
mirror of https://github.com/godotengine/godot synced 2024-07-05 15:43:36 +00:00

Merge pull request #93505 from TokageItLab/disable-cache-when-adding-animation

Make AnimationTrackCaches invalid when animation is added
This commit is contained in:
Rémi Verschelde 2024-06-25 10:01:54 +02:00
commit 9de37ab680
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -150,6 +150,7 @@ void AnimationMixer::_animation_set_cache_update() {
ad.name = key;
ad.last_update = animation_set_update_pass;
animation_set.insert(ad.name, ad);
cache_valid = false; // No need to delete the cache, but it must be updated to add track caches.
} else {
AnimationData &ad = animation_set[key];
if (ad.last_update != animation_set_update_pass) {