GodotCourse/week5/updated_project/scripts/coin.gd

9 lines
135 B
GDScript3
Raw Normal View History

2024-08-12 19:19:54 +00:00
extends Area2D
2024-08-12 19:32:24 +00:00
@onready var game = %GameManager
2024-08-12 19:19:54 +00:00
func _on_body_entered(body):
if body.is_in_group("player"):
game.coinCollected()