10 lines
150 B
GDScript3
10 lines
150 B
GDScript3
|
extends Area2D
|
||
|
|
||
|
@onready var game = %GameManager
|
||
|
|
||
|
|
||
|
func _on_body_entered(body):
|
||
|
if body.is_in_group("player"):
|
||
|
game.coinCollected()
|
||
|
queue_free()
|