-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDialogueBox.tscn
79 lines (69 loc) · 2 KB
/
DialogueBox.tscn
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[gd_scene load_steps=3 format=2]
[ext_resource path="res://DialogueBox.gd" type="Script" id=1]
[ext_resource path="res://Dialogue/DialoguePlayer.tscn" type="PackedScene" id=3]
[node name="DialogueBox" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 2.51746
margin_top = -2.51752
margin_right = 2.51746
margin_bottom = -2.51752
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Portrait" type="TextureRect" parent="."]
margin_right = 40.0
margin_bottom = 40.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Panel" type="Panel" parent="."]
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 12.605
margin_top = 139.931
margin_right = 908.605
margin_bottom = 419.931
size_flags_horizontal = 3
size_flags_vertical = 3
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Columns" type="HBoxContainer" parent="Panel"]
margin_left = 23.425
margin_top = 27.1134
margin_right = 1897.42
margin_bottom = 241.114
size_flags_horizontal = 7
size_flags_vertical = 3
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ButtonFinished" type="Button" parent="Panel/Columns"]
margin_left = 1735.0
margin_top = -7.0
margin_right = 1863.0
margin_bottom = 43.0
[node name="ButtonNext" type="Button" parent="Panel/Columns"]
margin_left = 1523.0
margin_top = -3.0
margin_right = 1709.0
margin_bottom = 47.0
[node name="Name" type="Label" parent="Panel/Columns"]
margin_left = -12.0
margin_top = -11.0
margin_right = 70.0
margin_bottom = 242.0
text = "Name"
[node name="Text" type="Label" parent="Panel/Columns"]
margin_left = 115.0
margin_top = -18.0
margin_right = 1488.0
margin_bottom = 234.0
text = "Text"
[node name="DialoguePlayer" parent="." instance=ExtResource( 3 )]
[connection signal="pressed" from="Panel/Columns/ButtonFinished" to="." method="_on_ButtonNext_pressed"]
[connection signal="pressed" from="Panel/Columns/ButtonNext" to="." method="_on_ButtonFinished_pressed"]
[connection signal="finished" from="DialoguePlayer" to="." method="_on_DialoguePlayer_finished"]