-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathendscreen.tscn
More file actions
61 lines (52 loc) · 1.92 KB
/
endscreen.tscn
File metadata and controls
61 lines (52 loc) · 1.92 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
59
60
61
[gd_scene load_steps=7 format=3 uid="uid://cd51xv5fn016i"]
[ext_resource type="Script" path="res://scripts/endscreen.gd" id="1_kfir6"]
[ext_resource type="FontFile" uid="uid://bkxy3l4hhwk1b" path="res://nintendo-nes-font.ttf" id="2_wjc35"]
[ext_resource type="Texture2D" uid="uid://dewe1465dhat7" path="res://backgrounds/endscreen.png" id="2_xjpm5"]
[ext_resource type="Script" path="res://scripts/Title.gd" id="4_blxhs"]
[ext_resource type="Script" path="res://scripts/optionsWindow.gd" id="5_ibupa"]
[ext_resource type="PackedScene" uid="uid://ow7101idlpsf" path="res://cursor.tscn" id="5_lsll6"]
[node name="endscreen" type="Node2D"]
texture_filter = 1
script = ExtResource("1_kfir6")
[node name="bg" type="Sprite2D" parent="."]
texture = ExtResource("2_xjpm5")
centered = false
[node name="score" type="Label" parent="."]
texture_filter = 1
offset_left = 294.0
offset_top = 65.0
offset_right = 334.0
offset_bottom = 88.0
scale = Vector2(3.995, 3.995)
theme_override_fonts/font = ExtResource("2_wjc35")
script = ExtResource("4_blxhs")
[node name="time" type="Label" parent="score"]
offset_left = 55.3192
offset_top = 53.0663
offset_right = 183.319
offset_bottom = 126.066
[node name="MainMenu" type="Button" parent="."]
anchors_preset = 4
anchor_top = 0.5
anchor_bottom = 0.5
offset_left = 504.0
offset_top = 559.0
offset_right = 655.0
offset_bottom = 623.0
grow_vertical = 2
size_flags_horizontal = 4
theme_override_fonts/font = ExtResource("2_wjc35")
text = "MAIN MENU
"
script = ExtResource("5_ibupa")
[node name="Restart" type="Button" parent="."]
texture_filter = 1
offset_left = 502.0
offset_top = 477.0
offset_right = 654.0
offset_bottom = 539.0
theme_override_fonts/font = ExtResource("2_wjc35")
text = "RESTART"
[node name="cursor" parent="." instance=ExtResource("5_lsll6")]
[connection signal="pressed" from="MainMenu" to="." method="_on_main_menu_pressed"]
[connection signal="pressed" from="Restart" to="." method="_on_restart_pressed"]