-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tscn
136 lines (110 loc) · 4.19 KB
/
main.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[gd_scene load_steps=6 format=3 uid="uid://cd8i18tjcwntm"]
[ext_resource type="Script" path="res://main.gd" id="1_brmdg"]
[ext_resource type="Script" path="res://CanvasLayer.gd" id="2_ju1ob"]
[sub_resource type="Theme" id="Theme_l6jmc"]
[sub_resource type="Theme" id="Theme_ruyr5"]
[sub_resource type="SystemFont" id="SystemFont_ccxhw"]
[node name="Main" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_brmdg")
[node name="CanvasLayer" type="CanvasLayer" parent="."]
script = ExtResource("2_ju1ob")
[node name="Score" type="Label" parent="CanvasLayer"]
anchors_preset = 1
anchor_left = 1.0
anchor_right = 1.0
offset_left = -113.0
offset_bottom = 42.0
grow_horizontal = 0
theme = SubResource("Theme_l6jmc")
theme_override_font_sizes/font_size = 30
text = "Score: 0
Words Attempted: 0
Success Rate: 0%"
[node name="VBoxContainer" type="VBoxContainer" parent="CanvasLayer"]
anchors_preset = -1
anchor_left = 0.3
anchor_top = 0.3
anchor_right = 0.7
anchor_bottom = 0.7
offset_left = -83.0
offset_top = -64.0
offset_right = 83.0
offset_bottom = 64.0
grow_horizontal = 2
grow_vertical = 2
[node name="Current Word" type="Label" parent="CanvasLayer/VBoxContainer"]
layout_mode = 2
theme = SubResource("Theme_ruyr5")
theme_override_fonts/font = SubResource("SystemFont_ccxhw")
theme_override_font_sizes/font_size = 30
text = "Spell words correctly."
horizontal_alignment = 1
[node name="Spacer" type="Control" parent="CanvasLayer/VBoxContainer"]
custom_minimum_size = Vector2(2.08165e-12, 30)
layout_mode = 2
[node name="Diff" type="RichTextLabel" parent="CanvasLayer/VBoxContainer"]
layout_mode = 2
bbcode_enabled = true
fit_content = true
context_menu_enabled = true
[node name="Spacer4" type="Control" parent="CanvasLayer/VBoxContainer"]
custom_minimum_size = Vector2(2.08165e-12, 50)
layout_mode = 2
[node name="Editor" type="LineEdit" parent="CanvasLayer/VBoxContainer"]
layout_mode = 2
placeholder_text = "Spell Word"
alignment = 1
[node name="Spacer2" type="Control" parent="CanvasLayer/VBoxContainer"]
custom_minimum_size = Vector2(2.08165e-12, 30)
layout_mode = 2
[node name="New Word" type="Button" parent="CanvasLayer/VBoxContainer"]
layout_mode = 2
text = "New Word"
[node name="Spacer3" type="Control" parent="CanvasLayer/VBoxContainer"]
custom_minimum_size = Vector2(2.08165e-12, 30)
layout_mode = 2
[node name="Speak" type="Button" parent="CanvasLayer/VBoxContainer"]
layout_mode = 2
text = "Speak Word"
[node name="HBoxContainer" type="HBoxContainer" parent="CanvasLayer/VBoxContainer"]
layout_mode = 2
[node name="Slow" type="Button" parent="CanvasLayer/VBoxContainer/HBoxContainer"]
layout_mode = 2
text = "Slow"
[node name="Spacer" type="Control" parent="CanvasLayer/VBoxContainer/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="Fast" type="Button" parent="CanvasLayer/VBoxContainer/HBoxContainer"]
layout_mode = 2
text = "Fast"
[node name="Reset" type="Button" parent="CanvasLayer/VBoxContainer"]
layout_mode = 2
text = "Reset Score
"
[node name="Spacer5" type="Control" parent="CanvasLayer/VBoxContainer"]
custom_minimum_size = Vector2(2.08165e-12, 30)
layout_mode = 2
[node name="Pause" type="Button" parent="CanvasLayer/VBoxContainer"]
process_mode = 3
layout_mode = 2
text = "Pause Game"
[node name="Background" type="Panel" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[connection signal="text_submitted" from="CanvasLayer/VBoxContainer/Editor" to="." method="_on_editor_text_submitted"]
[connection signal="pressed" from="CanvasLayer/VBoxContainer/New Word" to="." method="_on_new_word_pressed"]
[connection signal="pressed" from="CanvasLayer/VBoxContainer/Speak" to="." method="_on_speak_pressed"]
[connection signal="pressed" from="CanvasLayer/VBoxContainer/HBoxContainer/Slow" to="." method="_on_slow_pressed"]
[connection signal="pressed" from="CanvasLayer/VBoxContainer/HBoxContainer/Fast" to="." method="_on_fast_pressed"]
[connection signal="pressed" from="CanvasLayer/VBoxContainer/Reset" to="." method="_on_reset_pressed"]
[connection signal="pressed" from="CanvasLayer/VBoxContainer/Pause" to="." method="_on_pause_pressed"]