-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHUD4A04.tmp
127 lines (116 loc) · 3.24 KB
/
HUD4A04.tmp
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
[gd_scene load_steps=5 format=3 uid="uid://kelaiuqlmxfp"]
[ext_resource type="Script" path="res://HUD.gd" id="1_20sdl"]
[ext_resource type="Texture2D" uid="uid://cf2aj8urwmdxu" path="res://title.png" id="2_j4jbj"]
[ext_resource type="FontFile" uid="uid://2dv1nyhoody6" path="res://vinque rg.otf" id="2_j83d8"]
[ext_resource type="Texture2D" uid="uid://ssjydcs3kl2f" path="res://score.png" id="3_0g4f6"]
[node name="HUD" type="CanvasLayer"]
script = ExtResource("1_20sdl")
[node name="ScoreLabel" type="Label" parent="."]
offset_left = 59.0
offset_right = 366.0
offset_bottom = 88.0
theme_override_colors/font_color = Color(0, 0, 0, 1)
theme_override_fonts/font = ExtResource("2_j83d8")
theme_override_font_sizes/font_size = 64
text = "Score: 999"
[node name="SpawnCoinsButton" type="Button" parent="."]
offset_left = 33.0
offset_top = 92.0
offset_right = 178.0
offset_bottom = 123.0
text = "Start Game"
[node name="MessageLabel" type="Label" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -142.5
offset_top = -44.0
offset_right = 142.5
offset_bottom = 44.0
grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 0
size_flags_vertical = 0
theme_override_font_sizes/font_size = 64
[node name="ResetButton" type="Button" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -50.5
offset_top = 66.0
offset_right = 50.5
offset_bottom = 97.0
grow_horizontal = 2
grow_vertical = 2
text = "Reset Game"
[node name="TitleLabel" type="Label" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -162.0
offset_top = -39.0
offset_right = 260.0
offset_bottom = 49.0
grow_horizontal = 2
grow_vertical = 2
theme_override_colors/font_color = Color(0, 0, 0, 1)
theme_override_fonts/font = ExtResource("2_j83d8")
theme_override_font_sizes/font_size = 53
text = "King's Bounty"
[node name="StartGameButton" type="Button" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -48.0
offset_top = 66.0
offset_right = 48.0
offset_bottom = 97.0
grow_horizontal = 2
grow_vertical = 2
text = "Start Game"
[node name="TitleImage" type="Sprite2D" parent="."]
z_index = -1
texture_filter = 1
position = Vector2(577, 324)
texture = ExtResource("2_j4jbj")
metadata/_aseprite_wizard_config_ = {
"i_mode": 1,
"keep_anim_length": false,
"layer": "",
"o_ex_p": "",
"o_folder": "",
"o_name": "",
"only_visible": false,
"player": "",
"slice": "",
"source": "res://title.aseprite"
}
[node name="ScoreImage" type="Sprite2D" parent="."]
z_index = -1
texture_filter = 1
position = Vector2(214, 45)
scale = Vector2(1.14044, 1)
texture = ExtResource("3_0g4f6")
metadata/_aseprite_wizard_config_ = {
"i_mode": 1,
"keep_anim_length": false,
"layer": "",
"o_ex_p": "",
"o_folder": "",
"o_name": "",
"only_visible": false,
"player": "",
"slice": "",
"source": "res://score.aseprite"
}
[connection signal="pressed" from="SpawnCoinsButton" to="." method="_on_spawn_coins_button_pressed"]
[connection signal="pressed" from="ResetButton" to="." method="_on_reset_button_pressed"]
[connection signal="pressed" from="StartGameButton" to="." method="_on_start_game_button_pressed"]