This commit is contained in:
pennyrigate 2024-07-13 03:30:14 -04:00
parent cebcf43981
commit 7fd32cc7b0
3 changed files with 3 additions and 0 deletions

View file

@ -74,6 +74,7 @@ const a_mech_hurt_1 = preload("res://audio/sounds/mech_hurt_1.ogg")
const a_mech_hurt_2 = preload("res://audio/sounds/mech_hurt_2.ogg")
const a_mech_hurt_3 = preload("res://audio/sounds/mech_hurt_3.ogg")
const a_critical_heat = preload("res://audio/sounds/critical_heat.ogg")
const a_glass_break = preload("res://audio/sounds/cop_shoot.ogg")
var loop_section = null
var has_looped = false

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

@ -8,8 +8,10 @@ func _ready():
func _on_2600_entered_phase(phase):
match phase:
2:
Audio.play_sound(Audio.a_glass_break,Audio.ac_small_explosion)
$DelayedArrow2.start()
3:
Audio.play_sound(Audio.a_glass_break,Audio.ac_small_explosion)
$DelayedArrow3.start()
4:
$ExitTimer.start()