godot-steering-ai-framework/project/demos/seek_and_flee/Spawner.gd
Francois Belair fb538b72cb Reorganize project
The GST namespace has been added to prevent class name conflicts, and
the project has been reorganized to make extensions and purpose easier.
2020-01-12 10:16:37 -05:00

12 lines
264 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
export var min_speed: = 50.0
export var max_speed: = 125.0