mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-28 09:47:16 +01:00
68b85bb234
gdformat follows the official style guide, and handles line length and wrapping lines for us.
7 lines
199 B
GDScript
7 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
|