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.
|
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)
|