This commit is contained in:
dan
2025-03-22 20:21:52 -04:00
commit ea36511c71
63 changed files with 1992 additions and 0 deletions

8
scripts/coin.gd Normal file
View File

@@ -0,0 +1,8 @@
extends Area2D
@onready var aplayer = $AnimationPlayer
func _ready() -> void:
print("coin ready!")
func _on_body_entered(body:Node2D) -> void:
GameManager.add_point()
aplayer.play("pickup_sound")