-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stats.tscn
104 lines (87 loc) · 2.65 KB
/
Stats.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
[gd_scene load_steps=12 format=2]
[ext_resource path="res://Stats.gd" type="Script" id=1]
[ext_resource path="res://Fonts/FasterOne-Regular.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://Fonts/DotGothic16-Regular.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://Fonts/Quicksand-VariableFont_wght.ttf" type="DynamicFontData" id=4]
[sub_resource type="DynamicFont" id=5]
size = 80
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=6]
size = 50
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=4]
size = 50
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=3]
size = 50
font_data = ExtResource( 4 )
[sub_resource type="StyleBoxFlat" id=11]
bg_color = Color( 0.2, 0.2, 0.2, 1 )
[sub_resource type="StyleBoxEmpty" id=12]
[sub_resource type="StyleBoxFlat" id=9]
bg_color = Color( 0.172549, 0.172549, 0.172549, 1 )
[node name="Stats" type="Node2D"]
script = ExtResource( 1 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_right = 1024.0
margin_bottom = 600.0
size_flags_horizontal = 3
size_flags_vertical = 3
alignment = 1
[node name="Title" type="Label" parent="VBoxContainer"]
margin_right = 1024.0
margin_bottom = 96.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_fonts/font = SubResource( 5 )
text = "Stats"
align = 1
valign = 1
[node name="TracksGotten" type="Label" parent="VBoxContainer"]
margin_top = 100.0
margin_right = 1024.0
margin_bottom = 197.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_fonts/font = SubResource( 6 )
align = 1
valign = 1
[node name="LiveWins" type="Label" parent="VBoxContainer"]
margin_top = 201.0
margin_right = 1024.0
margin_bottom = 297.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[node name="LiveLosses" type="Label" parent="VBoxContainer"]
margin_top = 301.0
margin_right = 1024.0
margin_bottom = 398.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[node name="LiveWinPercentage" type="Label" parent="VBoxContainer"]
margin_top = 402.0
margin_right = 1024.0
margin_bottom = 499.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[node name="Back" type="Button" parent="VBoxContainer"]
margin_top = 503.0
margin_right = 1024.0
margin_bottom = 600.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_fonts/font = SubResource( 3 )
custom_styles/hover = SubResource( 11 )
custom_styles/pressed = SubResource( 12 )
custom_styles/normal = SubResource( 9 )
text = "Back"
[connection signal="pressed" from="VBoxContainer/Back" to="." method="_on_Back_pressed"]