-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGamePassedScreen.tscn
77 lines (65 loc) · 1.8 KB
/
GamePassedScreen.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
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Fonts/FutilePro.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://Fonts/MatchupPro.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://GamePassedScreen.gd" type="Script" id=3]
[sub_resource type="DynamicFont" id=1]
size = 32
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=2]
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=3]
font_data = ExtResource( 1 )
[node name="GamePassedScreen" type="CanvasLayer"]
script = ExtResource( 3 )
[node name="ColorRect" type="ColorRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0, 0, 0, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -70.0
margin_top = -20.0
margin_right = 70.0
margin_bottom = 20.0
grow_horizontal = 2
grow_vertical = 2
custom_constants/separation = 60
alignment = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="VBoxContainer"]
margin_right = 350.0
margin_bottom = 28.0
custom_fonts/font = SubResource( 1 )
text = "string_congratulations"
align = 1
valign = 1
[node name="Label2" type="Label" parent="VBoxContainer"]
margin_top = 88.0
margin_right = 350.0
margin_bottom = 101.0
custom_fonts/font = SubResource( 2 )
text = "string_final_message"
align = 1
valign = 1
autowrap = true
[node name="Label3" type="Label" parent="VBoxContainer"]
margin_top = 161.0
margin_right = 350.0
margin_bottom = 175.0
custom_fonts/font = SubResource( 3 )
text = "string_thanks"
align = 1
valign = 1
[node name="Timer" type="Timer" parent="."]
wait_time = 8.0
one_shot = true
autostart = true
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]