cool progress

This commit is contained in:
Tabby 2025-04-21 01:11:27 +10:00
parent 07de7179c9
commit 341c91742c
14 changed files with 52 additions and 16 deletions

View file

@ -2,8 +2,8 @@ extends RigidBody2D
func _on_body_entered(body: Player) -> void:
print(body.name)
func _on_body_entered(body: Node) -> void:
#print(body.name)
if body is Player:
body.score += 1
queue_free()