mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-10 00:52:10 +01:00
1a37b2bee0
Used `var variable := 0.0` as discussed in the Godot issue, instead of `var variable: = 0.0`. Mostly these are minor/cosmetic changes, but I've also reorganized the folder structure (naming of folders) to reflect our guidelines, plus made some minor changes to the demo codes. Still work in progress.
8 lines
197 B
GDScript
8 lines
197 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
|