mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-24 05:37:15 +01:00
21 lines
621 B
Plaintext
21 lines
621 B
Plaintext
|
[gd_scene load_steps=5 format=2]
|
||
|
|
||
|
[ext_resource path="res://demos/arrive/Arriver.gd" type="Script" id=1]
|
||
|
[ext_resource path="res://demos/arrive/ArriveDemo.gd" type="Script" id=2]
|
||
|
[ext_resource path="res://demos/arrive/Target.gd" type="Script" id=3]
|
||
|
|
||
|
[sub_resource type="CircleShape2D" id=1]
|
||
|
radius = 15.0
|
||
|
|
||
|
[node name="Arrive" type="Node2D"]
|
||
|
script = ExtResource( 2 )
|
||
|
|
||
|
[node name="Arriver" type="KinematicBody2D" parent="."]
|
||
|
script = ExtResource( 1 )
|
||
|
|
||
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="Arriver"]
|
||
|
shape = SubResource( 1 )
|
||
|
|
||
|
[node name="Target" type="Node2D" parent="."]
|
||
|
script = ExtResource( 3 )
|