-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbattle_scene.tscn269123680.tmp
More file actions
31 lines (23 loc) · 1.07 KB
/
battle_scene.tscn269123680.tmp
File metadata and controls
31 lines (23 loc) · 1.07 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
[gd_scene load_steps=4 format=3 uid="uid://b83hqummjkavk"]
[ext_resource type="Script" uid="uid://b0rw8vu7octnk" path="res://battle_scene.gd" id="1_r5l0u"]
[ext_resource type="Script" uid="uid://dqbiwp1pq1031" path="res://turn-based-combat/TurnManager.gd" id="2_5g7vw"]
[ext_resource type="Script" uid="uid://ccjthokxcamls" path="res://command-system/CommandQueue.gd" id="3_5g7vw"]
[node name="BattleScene" type="Node2D"]
script = ExtResource("1_r5l0u")
[node name="TurnManager" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("2_5g7vw")
metadata/_custom_type_script = ExtResource("2_5g7vw")
[node name="CommandQueue" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("3_5g7vw")
[node name="play_round" type="Button" parent="."]
unique_name_in_owner = true
offset_left = 11.0
offset_top = 42.0
offset_right = 106.0
offset_bottom = 73.0
text = "Play Round"
[node name="EnemyAI" type="Node" parent="."]
[node name="PlayerInput" type="Node" parent="."]
[connection signal="get_commands" from="CommandQueue" to="TurnManager" method="play_turns"]