-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWinnScreen.tscn
41 lines (33 loc) · 1.15 KB
/
WinnScreen.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://Assets/Fonds/StartMenu.tres" type="Theme" id=1]
[ext_resource path="res://WinnScreen.gd" type="Script" id=2]
[ext_resource path="res://Assets/Fonds/dpcomic.ttf" type="DynamicFontData" id=3]
[sub_resource type="DynamicFont" id=1]
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=2]
font_data = ExtResource( 3 )
[node name="WinnScreen" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 2 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_top = 0.5
anchor_right = 1.0
anchor_bottom = 0.5
[node name="Label" type="Label" parent="VBoxContainer"]
margin_right = 1024.0
margin_bottom = 16.0
theme = ExtResource( 1 )
custom_fonts/font = SubResource( 1 )
text = "Congratulations! You beat the game!"
align = 1
[node name="MainMenu" type="Button" parent="VBoxContainer"]
anchor_top = 0.674
anchor_bottom = 0.674
margin_top = 20.0
margin_right = 1024.0
margin_bottom = 36.0
theme = ExtResource( 1 )
custom_fonts/font = SubResource( 2 )
text = "Main Menu"
[connection signal="button_down" from="VBoxContainer/MainMenu" to="." method="_on_MainMenu_button_down"]