mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-28 09:47:16 +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.
14 lines
493 B
Plaintext
14 lines
493 B
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://demos/GroupBehaviors/Member.tscn" type="PackedScene" id=1]
|
|
[ext_resource path="res://demos/GroupBehaviors/Spawner.gd" type="Script" id=2]
|
|
[ext_resource path="res://demos/GroupBehaviors/GroupBehaviorsDemo.gd" type="Script" id=3]
|
|
|
|
[node name="GroupBehaviorsDemo" type="Node2D"]
|
|
script = ExtResource( 3 )
|
|
|
|
[node name="Spawner" type="Node2D" parent="."]
|
|
position = Vector2( 512, 300 )
|
|
script = ExtResource( 2 )
|
|
member = ExtResource( 1 )
|