You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
264 B
GDScript
13 lines
264 B
GDScript
1 year ago
|
extends Node
|
||
|
|
||
|
# Event Handler for Encountering Knowledge
|
||
|
|
||
|
# Learn incoming encountered knowledge
|
||
|
func handle(old_content):
|
||
|
print_debug("KnowledgeBase: " + old_content)
|
||
|
KnowledgeBase.forget(old_content)
|
||
|
|
||
|
# Ready
|
||
|
func _ready():
|
||
|
MessageBus.subscribe("lost", self)
|