diff options
author | Adam Scott <ascott.ca@gmail.com> | 2024-09-04 12:04:27 -0400 |
---|---|---|
committer | Adam Scott <ascott.ca@gmail.com> | 2024-09-04 12:56:03 -0400 |
commit | d3ddce6b8836bd6c39dc6ebc2a30102041953599 (patch) | |
tree | 5f281943bce0a33c45ebe4e39a81f21f760dfa41 /scene/animation | |
parent | e2dd56bea7a1aa13fe74fd6eac049e4cbde0434c (diff) | |
download | redot-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.cpp | 3 |
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; |