7 lines
135 B
GDScript
7 lines
135 B
GDScript
extends Area2D
|
|
|
|
func _on_body_entered(body: Node2D) -> void:
|
|
print("you got coing")
|
|
queue_free()
|
|
pass # Replace with function body.
|