GodotCourse/week6/updated_project/scripts/coin.gd

11 lines
172 B
GDScript3
Raw Normal View History

2024-08-19 15:21:33 +00:00
extends Area2D
@onready var game = %SceneManager
signal coinCollected
func _on_body_entered(body):
if body.is_in_group("player"):
coinCollected.emit()
queue_free()