godot-steering-ai-framework/project/demos/seek_and_flee/Spawner.gd
Francois Belair 0a8551e5c9 Remove GUI and export variables in demo scripts
Since we don't want to come up with a GUI maintenance system and
instead focus on the steering behaviors, all relevant variables have
been moved as exported in the main demo script for each toy.
2020-01-15 14:15:31 -05:00

8 lines
199 B
GDScript

extends Node2D
# Holds data to instantiate and configure a number of agent entities.
export(PackedScene) var Entity: PackedScene
export var entity_count: = 10
export var entity_color: = Color.blue