lets-godot-roguelike
lets-godot-roguelike copied to clipboard
Brain Node
Things with an AI will receive a Brain Node as one of its children.
Create a new scene; base Node
"Brain" as res://things/Brain.tscn
Script it.
Its first method:
func take_turn():
This will be the AI's "main loop" if you will. For now, we'll use the ol' placeholder print statement.