8 lines
127 B
GDScript3
8 lines
127 B
GDScript3
|
extends Area2D
|
||
|
|
||
|
@onready var game = $".."
|
||
|
|
||
|
func _on_body_entered(body):
|
||
|
if body.is_in_group("player"):
|
||
|
game.coinCollected()
|