This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWin.tscn
59 lines (48 loc) · 1.58 KB
/
Win.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://src/Controls/GameOver.cs" type="Script" id=1]
[sub_resource type="DynamicFontData" id=1]
font_path = "res://assets/fonts/game_over.ttf"
[sub_resource type="DynamicFont" id=2]
size = 250
extra_spacing_top = -22
font_data = SubResource( 1 )
[sub_resource type="DynamicFontData" id=3]
font_path = "res://assets/fonts/game_over.ttf"
[sub_resource type="DynamicFont" id=4]
size = 64
outline_color = Color( 0, 0, 0, 1 )
font_data = SubResource( 3 )
[node name="GameOver" type="Node2D"]
script = ExtResource( 1 )
[node name="ColorRect" type="ColorRect" parent="."]
margin_right = 1025.0
margin_bottom = 600.0
[node name="CenterContainer" type="CenterContainer" parent="."]
modulate = Color( 0.243137, 0.756863, 0.223529, 1 )
margin_right = 1025.0
margin_bottom = 600.0
[node name="Label" type="Label" parent="CenterContainer"]
modulate = Color( 0.054902, 0.682353, 0.2, 1 )
margin_left = 276.0
margin_top = 240.0
margin_right = 748.0
margin_bottom = 360.0
custom_colors/font_color = Color( 0.243137, 0.756863, 0.223529, 1 )
custom_fonts/font = SubResource( 2 )
text = "You WIN!"
align = 1
valign = 1
uppercase = true
[node name="Button" type="Button" parent="."]
margin_left = 472.0
margin_top = 416.0
margin_right = 574.0
margin_bottom = 458.0
mouse_default_cursor_shape = 2
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_colors/font_color_hover = Color( 0.172549, 0.172549, 0.172549, 1 )
custom_fonts/font = SubResource( 4 )
action_mode = 0
text = "Restart"
flat = true
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]