mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
15 lines
312 B
GDScript
15 lines
312 B
GDScript
extends Node
|
|
class_name Edible
|
|
|
|
## Emits [signal eaten] when eaten by an [Eater] whose acceptable diets contain this node's [field diet].
|
|
##
|
|
## To add multiple possible [Edible] diets to an entity, add multiple [Edible] nodes to it.
|
|
|
|
signal eaten
|
|
|
|
|
|
@export var diet: StringName = &""
|
|
|
|
|
|
func eat():
|
|
eaten.emit()
|