JanuaryGame/GodotProject/scripts/coin.gd

9 lines
169 B
GDScript3
Raw Normal View History

2025-02-04 02:02:52 +00:00
class_name Coin extends Area2D
signal coinCollected
func _on_body_entered(body: Node2D) -> void:
if body.is_in_group("player"):
coinCollected.emit()
queue_free()