small racing game im working on
Diffstat (limited to 'assets/cars/gearbox.gd')
| -rw-r--r-- | assets/cars/gearbox.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/cars/gearbox.gd b/assets/cars/gearbox.gd index cd069b1..01dae96 100644 --- a/assets/cars/gearbox.gd +++ b/assets/cars/gearbox.gd @@ -2,5 +2,5 @@ extends Node @onready var shift_1 := $Shift1 as AudioStreamPlayer -func _on_sedan_shifted() -> void: +func _on_shift() -> void: shift_1.play() |