blob: 3660cef218639eda412c3978a267632906435ffb (
plain)
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
|
[gd_scene load_steps=7 format=2]
[ext_resource path="res://UI/LevelSelectCell.gd" type="Script" id=1]
[ext_resource path="res://Assets/Fonts/geometry-soft-pro/Geometry_Soft_Pro-Bold_N.otf" type="DynamicFontData" id=2]
[ext_resource path="res://Assets/Fonts/impact-label/Impact_Label_Reversed.ttf" type="DynamicFontData" id=3]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0.133333, 0.372549, 0.188235, 1 )
border_width_left = 1
border_width_top = 1
border_width_right = 1
border_width_bottom = 1
[sub_resource type="DynamicFont" id=2]
size = 120
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=3]
size = 20
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[node name="LevelSelectCell" type="Panel"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -683.0
margin_bottom = -400.0
hint_tooltip = "Select Level"
custom_styles/panel = SubResource( 1 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ClearMark" type="Label" parent="."]
margin_top = 1.0
margin_right = 341.0
margin_bottom = 201.0
custom_fonts/font = SubResource( 2 )
text = "X"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Time" type="Label" parent="."]
margin_left = 7.0
margin_top = 3.0
margin_right = 54.0
margin_bottom = 24.0
custom_fonts/font = SubResource( 3 )
text = "0.00s"
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Name" type="Label" parent="."]
margin_left = 8.0
margin_top = 176.0
margin_right = 66.0
margin_bottom = 197.0
custom_fonts/font = SubResource( 3 )
text = "Player"
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
|