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