mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-24 05:37:15 +01:00
8fb4f4c51a
The use of multiline blocks in GDSCript for comments leaves them in the final compiled file, increasing size and potentially processing for no end-user gain.
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 min_speed: = 50.0
|
|
export var max_speed: = 125.0
|