diff options
author | Adam Scott <ascott.ca@gmail.com> | 2024-07-07 13:31:56 -0400 |
---|---|---|
committer | Adam Scott <ascott.ca@gmail.com> | 2024-07-07 14:47:54 -0400 |
commit | a38f30fbd5bc4aeb55c749768111a37370ebd99e (patch) | |
tree | 2f9ad86db3044f6880b33b0f3d19269b79a0528e /scene/audio | |
parent | f3af22b10b1e64146d48be7726f6395c9a4185e9 (diff) | |
download | redot-engine-a38f30fbd5bc4aeb55c749768111a37370ebd99e.tar.gz |
Fix Web samples finished missing signal
Diffstat (limited to 'scene/audio')
-rw-r--r-- | scene/audio/audio_stream_player_internal.cpp | 1 |
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()) { |