summaryrefslogtreecommitdiffstats
path: root/scene/audio
diff options
context:
space:
mode:
authorAdam Scott <ascott.ca@gmail.com>2024-07-07 13:31:56 -0400
committerAdam Scott <ascott.ca@gmail.com>2024-07-07 14:47:54 -0400
commita38f30fbd5bc4aeb55c749768111a37370ebd99e (patch)
tree2f9ad86db3044f6880b33b0f3d19269b79a0528e /scene/audio
parentf3af22b10b1e64146d48be7726f6395c9a4185e9 (diff)
downloadredot-engine-a38f30fbd5bc4aeb55c749768111a37370ebd99e.tar.gz
Fix Web samples finished missing signal
Diffstat (limited to 'scene/audio')
-rw-r--r--scene/audio/audio_stream_player_internal.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/audio/audio_stream_player_internal.cpp b/scene/audio/audio_stream_player_internal.cpp
index b3a55ddee0..6653e01f25 100644
--- a/scene/audio/audio_stream_player_internal.cpp
+++ b/scene/audio/audio_stream_player_internal.cpp
@@ -152,6 +152,7 @@ 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()) {