mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2025-02-03 22:45:55 +01:00
0a8551e5c9
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.
8 lines
199 B
GDScript
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
|