diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-11-24 14:43:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-24 14:43:04 +0100 |
commit | 1ba920fada9efc8c4476ded50fe673b8db541366 (patch) | |
tree | 7131193958c79897a572a3806efc2f75b583f13f | |
parent | d6a1db2b07595f80c0f19ab01c6b4d0b66002b18 (diff) | |
parent | 671c04f89f449f94e9d129d2fa0b96d3f65dd191 (diff) | |
download | redot-engine-1ba920fada9efc8c4476ded50fe673b8db541366.tar.gz |
Merge pull request #85308 from YuriSizov/editor-fix-animation-backup-copy-crash
Fix a crash when trying to restore uncopyable animation tracks
-rw-r--r-- | scene/animation/animation_mixer.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/scene/animation/animation_mixer.cpp b/scene/animation/animation_mixer.cpp index f375b2eb83..dbd790003a 100644 --- a/scene/animation/animation_mixer.cpp +++ b/scene/animation/animation_mixer.cpp @@ -2143,14 +2143,22 @@ void AnimatedValuesBackup::set_data(const HashMap<NodePath, AnimationMixer::Trac clear_data(); for (const KeyValue<NodePath, AnimationMixer::TrackCache *> &E : p_data) { - data.insert(E.key, get_cache_copy(E.value)); + AnimationMixer::TrackCache *track = get_cache_copy(E.value); + if (!track) { + continue; // Some types of tracks do not get a copy and must be ignored. + } + + data.insert(E.key, track); } } HashMap<NodePath, AnimationMixer::TrackCache *> AnimatedValuesBackup::get_data() const { HashMap<NodePath, AnimationMixer::TrackCache *> ret; for (const KeyValue<NodePath, AnimationMixer::TrackCache *> &E : data) { - ret.insert(E.key, get_cache_copy(E.value)); + AnimationMixer::TrackCache *track = get_cache_copy(E.value); + ERR_CONTINUE(!track); // Backup shouldn't contain tracks that cannot be copied, this is a mistake. + + ret.insert(E.key, track); } return ret; } |