summaryrefslogtreecommitdiffstats
path: root/scene/animation
diff options
context:
space:
mode:
authorAdam Scott <ascott.ca@gmail.com>2024-09-04 12:04:27 -0400
committerAdam Scott <ascott.ca@gmail.com>2024-09-04 12:56:03 -0400
commitd3ddce6b8836bd6c39dc6ebc2a30102041953599 (patch)
tree5f281943bce0a33c45ebe4e39a81f21f760dfa41 /scene/animation
parente2dd56bea7a1aa13fe74fd6eac049e4cbde0434c (diff)
downloadredot-engine-d3ddce6b8836bd6c39dc6ebc2a30102041953599.tar.gz
Fix leak when using audio samples instead of streams
Diffstat (limited to 'scene/animation')
-rw-r--r--scene/animation/animation_mixer.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/animation/animation_mixer.cpp b/scene/animation/animation_mixer.cpp
index 0ab4dbe470..fe2a33685c 100644
--- a/scene/animation/animation_mixer.cpp
+++ b/scene/animation/animation_mixer.cpp
@@ -1637,6 +1637,9 @@ void AnimationMixer::_blend_process(double p_delta, bool p_update_only) {
}
if (t_obj->call(SNAME("get_is_sample"))) {
+ if (t->audio_stream_playback->get_sample_playback().is_valid()) {
+ AudioServer::get_singleton()->stop_sample_playback(t->audio_stream_playback->get_sample_playback());
+ }
Ref<AudioSamplePlayback> sample_playback;
sample_playback.instantiate();
sample_playback->stream = stream;