From 3288ce1c98ea13c649adb73c8814905a127527b6 Mon Sep 17 00:00:00 2001 From: Nilou Date: Sun, 1 Mar 2026 16:37:16 +0100 Subject: [PATCH] =?UTF-8?q?impl=C3=A9mentation=20du=20sfx=20de=20bip=20?= =?UTF-8?q?=C3=A9cran=20#156?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stages/3d_scenes/cockpit_scene/scripts/cockpit.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd b/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd index d22c89d..9044164 100644 --- a/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd +++ b/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd @@ -74,11 +74,13 @@ func _on_main_screen_activated(): update_dashboard() func _on_left_screen_activated(): + AudioManager.play_sfx("Screen_interaction") if GameInfo.game_data.current_run and len(GameInfo.game_data.current_run.next_run_points) > 0: choosen_run_point = GameInfo.game_data.current_run.next_run_points[0] update_dashboard() func _on_right_screen_activated(): + AudioManager.play_sfx("Screen_interaction") if GameInfo.game_data.current_run and len(GameInfo.game_data.current_run.next_run_points) > 1: choosen_run_point = GameInfo.game_data.current_run.next_run_points[1] update_dashboard()