-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwin_screen.tscn
More file actions
58 lines (51 loc) · 1.55 KB
/
Copy pathwin_screen.tscn
File metadata and controls
58 lines (51 loc) · 1.55 KB
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
[gd_scene load_steps=4 format=3 uid="uid://b48252o6fucjf"]
[ext_resource type="Script" path="res://win_label.gd" id="1_10v12"]
[ext_resource type="Script" path="res://rematch_button.gd" id="2_st7fa"]
[ext_resource type="Script" path="res://menu_button.gd" id="3_eynpv"]
[node name="WinScreen" type="Node2D"]
[node name="Label" type="Label" parent="."]
anchors_preset = 5
anchor_left = 0.5
anchor_right = 0.5
offset_left = -329.0
offset_top = -342.0
offset_right = 329.0
offset_bottom = -205.0
grow_horizontal = 2
size_flags_horizontal = 0
theme_override_font_sizes/font_size = 100
text = "Player 1 Won!"
script = ExtResource("1_10v12")
[node name="Camera2D" type="Camera2D" parent="."]
[node name="RematchButton" type="Button" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -169.5
offset_top = -52.0
offset_right = 169.5
offset_bottom = 52.0
grow_horizontal = 2
grow_vertical = 2
theme_override_font_sizes/font_size = 70
text = "Rematch?"
script = ExtResource("2_st7fa")
[node name="MenuButton" type="Button" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -329.0
offset_top = 106.0
offset_right = 328.0
offset_bottom = 210.0
grow_horizontal = 2
grow_vertical = 2
theme_override_font_sizes/font_size = 70
text = "Back to Main Menu"
script = ExtResource("3_eynpv")
[connection signal="pressed" from="RematchButton" to="RematchButton" method="_on_pressed"]
[connection signal="pressed" from="MenuButton" to="MenuButton" method="_on_pressed"]