You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Fixes crash when AnimationPlayer reset on save
(cherry picked from commit 96f077a18d)
This commit is contained in:
committed by
Rémi Verschelde
parent
ac40f5bb75
commit
cdaae2abfb
@@ -1485,8 +1485,10 @@ static void _reset_animation_players(Node *p_node, List<Ref<AnimatedValuesBackup
|
||||
AnimationPlayer *player = Object::cast_to<AnimationPlayer>(p_node->get_child(i));
|
||||
if (player && player->is_reset_on_save_enabled() && player->can_apply_reset()) {
|
||||
Ref<AnimatedValuesBackup> old_values = player->apply_reset();
|
||||
if (old_values.is_valid()) {
|
||||
r_anim_backups->push_back(old_values);
|
||||
}
|
||||
}
|
||||
_reset_animation_players(p_node->get_child(i), r_anim_backups);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user