diff options
author | Adam Scott <ascott.ca@gmail.com> | 2024-07-12 10:49:59 -0400 |
---|---|---|
committer | Adam Scott <ascott.ca@gmail.com> | 2024-07-17 10:45:38 -0400 |
commit | 2f5f84b4701b80ea3cf6067d8f15035f221918b1 (patch) | |
tree | d0fecaf5de886b2f8a0c81eb5797bcd43079e1ef /scene/audio | |
parent | 0918fd2a213021e7bba4765c6398359c729d3fb4 (diff) | |
download | redot-engine-2f5f84b4701b80ea3cf6067d8f15035f221918b1.tar.gz |
Fix audio samples not being able to be "finished"
Diffstat (limited to 'scene/audio')
-rw-r--r-- | scene/audio/audio_stream_player_internal.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scene/audio/audio_stream_player_internal.cpp b/scene/audio/audio_stream_player_internal.cpp index 6653e01f25..36c14e03d5 100644 --- a/scene/audio/audio_stream_player_internal.cpp +++ b/scene/audio/audio_stream_player_internal.cpp @@ -152,7 +152,6 @@ Ref<AudioStreamPlayback> AudioStreamPlayerInternal::play_basic() { Ref<AudioSamplePlayback> sample_playback; sample_playback.instantiate(); sample_playback->stream = stream; - sample_playback->player_id = node->get_instance_id(); stream_playback->set_sample_playback(sample_playback); } } else if (!stream->is_meta_stream()) { @@ -262,9 +261,6 @@ void AudioStreamPlayerInternal::seek(float p_seconds) { void AudioStreamPlayerInternal::stop() { for (Ref<AudioStreamPlayback> &playback : stream_playbacks) { AudioServer::get_singleton()->stop_playback_stream(playback); - if (_is_sample() && playback->get_sample_playback().is_valid()) { - AudioServer::get_singleton()->stop_sample_playback(playback->get_sample_playback()); - } } stream_playbacks.clear(); |