-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMobController.tscn
More file actions
38 lines (28 loc) · 1.33 KB
/
Copy pathMobController.tscn
File metadata and controls
38 lines (28 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[gd_scene load_steps=10 format=2]
[ext_resource path="res://world/Spawners/MobController.gd" type="Script" id=1]
[ext_resource path="res://world/Spawners/Respawner.gd" type="Script" id=2]
[ext_resource path="res://world/Spawners/State.gd" type="Script" id=3]
[ext_resource path="res://world/Spawners/MobAnimation.gd" type="Script" id=4]
[ext_resource path="res://world/Spawners/Aggro.gd" type="Script" id=5]
[ext_resource path="res://world/Spawners/Wander.gd" type="Script" id=6]
[ext_resource path="res://world/Spawners/Floor.gd" type="Script" id=7]
[ext_resource path="res://world/Spawners/MobGravity.gd" type="Script" id=8]
[ext_resource path="res://world/Spawners/Chase.gd" type="Script" id=9]
[node name="MobController" type="Spatial"]
script = ExtResource( 1 )
[node name="Spawner" type="Node" parent="."]
script = ExtResource( 2 )
[node name="State" type="Node" parent="."]
script = ExtResource( 3 )
[node name="Wander" type="Node" parent="State"]
script = ExtResource( 6 )
[node name="MobAnimation" type="Node" parent="State"]
script = ExtResource( 4 )
[node name="Chase" type="Node" parent="State"]
script = ExtResource( 9 )
[node name="Aggro" type="Node" parent="State"]
script = ExtResource( 5 )
[node name="Gravity" type="Node" parent="."]
script = ExtResource( 8 )
[node name="Floor" type="Node" parent="Gravity"]
script = ExtResource( 7 )