GodotCourse/week6/updated_project/scripts/coin.gd

11 lines
172 B
GDScript

extends Area2D
@onready var game = %SceneManager
signal coinCollected
func _on_body_entered(body):
if body.is_in_group("player"):
coinCollected.emit()
queue_free()