From 52aa5668fe8bde49104c06345eaffc56fbf30958 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Tue, 30 Jan 2024 00:56:12 -0600 Subject: [PATCH] Fix AudioStreamPlayer3D autoplay and internal notifications --- scene/3d/audio_stream_player_3d.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/3d/audio_stream_player_3d.cpp b/scene/3d/audio_stream_player_3d.cpp index 49bcb77ea72..49ae59e2a48 100644 --- a/scene/3d/audio_stream_player_3d.cpp +++ b/scene/3d/audio_stream_player_3d.cpp @@ -240,6 +240,7 @@ float AudioStreamPlayer3D::_get_attenuation_db(float p_distance) const { } void AudioStreamPlayer3D::_notification(int p_what) { + internal->notification(p_what); switch (p_what) { case NOTIFICATION_ENTER_TREE: { velocity_tracker->reset(get_global_transform().origin);