diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2022-10-24 22:07:02 +0100 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2022-10-24 22:07:02 +0100 |
commit | 7543a5e01451979b5ec72e95e34beb53f6440267 (patch) | |
tree | 5f836ccb52745d9e753ec69444e635c8b9642845 /scene/animation | |
parent | 040f49ed6e71a6e7f23d763c4b56095cbf319ef7 (diff) |
Rename queue_delete => queue_free
# Conflicts:
# editor/plugins/tiles/tiles_editor_plugin.cpp
Diffstat (limited to 'scene/animation')
-rw-r--r-- | scene/animation/animation_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index e306d00a51..59930a3fbb 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -2066,7 +2066,7 @@ Ref<AnimatedValuesBackup> AnimationPlayer::apply_reset(bool p_user_initiated) { // Forcing the use of the original root because the scene where original player belongs may be not the active one Ref<AnimatedValuesBackup> old_values = aux_player->backup_animated_values(get_node(get_root())); aux_player->seek(0.0f, true); - aux_player->queue_delete(); + aux_player->queue_free(); if (p_user_initiated) { Ref<AnimatedValuesBackup> new_values = aux_player->backup_animated_values(); |