-
Notifications
You must be signed in to change notification settings - Fork 0
/
victory.tscn
109 lines (94 loc) · 2.75 KB
/
victory.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
105
106
107
108
109
[gd_scene load_steps=11 format=2]
[ext_resource path="res://img/bg/menu.png" type="Texture" id=1]
[ext_resource path="res://fonts/Dancing-Script/DancingScript-VariableFont_wght.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://scripts/level/menu-button.gd" type="Script" id=3]
[ext_resource path="res://scripts/menu/exitButton.gd" type="Script" id=5]
[ext_resource path="res://scripts/menu/resetButton.gd" type="Script" id=6]
[sub_resource type="DynamicFont" id=1]
size = 240
outline_size = 3
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=2]
size = 81
outline_size = 1
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=5]
size = 120
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=3]
size = 120
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=4]
size = 120
font_data = ExtResource( 2 )
[node name="Node2D" type="Node2D"]
[node name="TextureRect" type="TextureRect" parent="."]
margin_top = -4.13269
margin_right = 1920.0
margin_bottom = 1075.87
texture = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CanvasLayer" type="CanvasLayer" parent="."]
[node name="title" type="Label" parent="CanvasLayer"]
margin_top = 30.0
margin_right = 1920.0
margin_bottom = 300.0
custom_fonts/font = SubResource( 1 )
text = "Amazing!"
align = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="by" type="Label" parent="CanvasLayer"]
margin_left = 428.181
margin_top = 318.938
margin_right = 1472.18
margin_bottom = 416.938
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.619608, 0.847059, 0.643137, 1 )
text = "Good job on completing all 10 levels!"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="CanvasLayer"]
margin_left = 1622.77
margin_top = 39.9027
margin_right = 1875.77
margin_bottom = 190.903
custom_fonts/font = SubResource( 5 )
text = "Menu"
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button3" type="Button" parent="CanvasLayer"]
anchor_left = 0.00110359
anchor_right = 0.00110359
margin_left = 33.4399
margin_top = 891.552
margin_right = 617.44
margin_bottom = 1042.55
custom_fonts/font = SubResource( 3 )
text = "reset progress"
script = ExtResource( 6 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button2" type="Button" parent="CanvasLayer"]
anchor_left = 0.00110359
anchor_right = 0.00110359
margin_left = 1582.88
margin_top = 888.0
margin_right = 1874.88
margin_bottom = 1039.0
custom_fonts/font = SubResource( 4 )
text = "exit"
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="CanvasLayer/Button2" to="CanvasLayer/Button2" method="_on_Button_pressed"]