mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 16:14:22 +00:00
15 lines
247 B
GDScript
15 lines
247 B
GDScript
extends Node2D
|
|
class_name Collectable
|
|
|
|
|
|
@export var tag: StringName
|
|
|
|
|
|
signal collected(tag: StringName)
|
|
|
|
|
|
func _on_mouse_area_mouse_entered() -> void:
|
|
collected.emit()
|
|
|
|
func _on_collected(t: StringName) -> void:
|
|
Log.p(self, "Collected: %s" % t)
|