-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHUD.tscn
72 lines (62 loc) · 1.76 KB
/
HUD.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://HUD.gd" type="Script" id=1]
[ext_resource path="res://Hud_font.tres" type="DynamicFont" id=2]
[ext_resource path="res://assets/batmfa__.ttf" type="DynamicFontData" id=3]
[sub_resource type="DynamicFont" id=1]
size = 25
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=2]
size = 20
font_data = ExtResource( 3 )
[node name="HUD" type="CanvasLayer"]
script = ExtResource( 1 )
[node name="Checkpoint_Done" type="Label" parent="."]
margin_left = 46.1157
margin_top = 67.4816
margin_right = 86.1157
margin_bottom = 107.482
custom_fonts/font = ExtResource( 2 )
text = "0"
align = 1
valign = 1
[node name="Slash" type="Label" parent="."]
margin_left = 83.3144
margin_top = 68.2767
margin_right = 123.314
margin_bottom = 108.277
custom_fonts/font = ExtResource( 2 )
text = "/"
align = 1
valign = 1
[node name="Checkpoint_All" type="Label" parent="."]
margin_left = 128.218
margin_top = 68.2393
margin_right = 170.218
margin_bottom = 110.239
custom_fonts/font = ExtResource( 2 )
text = "3"
align = 1
valign = 1
[node name="Level" type="Label" parent="."]
margin_left = 18.1568
margin_top = 15.3634
margin_right = 237.157
margin_bottom = 55.3634
custom_fonts/font = ExtResource( 2 )
text = "Level 01"
[node name="Resart" type="Button" parent="."]
margin_left = 783.0
margin_top = 16.0
margin_right = 943.0
margin_bottom = 48.0
custom_fonts/font = SubResource( 1 )
text = "Restart"
[node name="Back" type="Button" parent="."]
margin_left = 741.912
margin_top = 61.9999
margin_right = 942.912
margin_bottom = 95.9999
custom_fonts/font = SubResource( 2 )
text = "Back to Menu"
[connection signal="pressed" from="Resart" to="." method="_on_Button_pressed"]
[connection signal="pressed" from="Back" to="." method="_on_Back_pressed"]