mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
82d92016a4
Replaced the text boxes with sliders to improve usability.
10 lines
258 B
GDScript
10 lines
258 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 max_speed: = 100.0
|
|
export var max_accel: = 20.0
|