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.
9 lines
218 B
GDScript
9 lines
218 B
GDScript
1 year ago
|
extends Node
|
||
|
|
||
|
# Event Handler for Encountering Knowledge
|
||
|
|
||
|
# Learn incoming encountered knowledge
|
||
|
func handle(new_content):
|
||
|
print_debug("KnowledgeBase: encountered " + new_content[0])
|
||
|
KnowledgeBase.learn(new_content)
|