Add sound effects for player actions and collectables

This commit is contained in:
2025-04-26 02:15:23 +02:00
parent 8959fd4b9f
commit f01645c094
46 changed files with 897 additions and 1058 deletions

View File

@@ -28,6 +28,8 @@ func _on_body_entered(body: Node2D) -> void:
if body is PlayerController:
handle_launchpad_animation()
body.velocity.y = -jump_force
if body.jump_sfx:
body.jump_sfx.play()
func handle_launchpad_animation() -> void: