blob: 7875deda86b4e4a1368ddcd6ce58605e05651552 (
plain)
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
|
[gd_scene load_steps=6 format=3 uid="uid://dv67unre56t5b"]
[ext_resource type="Texture2D" uid="uid://dobiydav6k32e" path="res://UI/GameOverScreen.png" id="1_60m3n"]
[ext_resource type="Script" path="res://scenes/gameover.gd" id="1_clwwq"]
[ext_resource type="Texture2D" uid="uid://dje61ck7cl66a" path="res://UI/minimizebuttonpressed.png" id="2_j8fs8"]
[ext_resource type="Texture2D" uid="uid://brlgi3g1hy155" path="res://UI/xbuttonpressed.png" id="2_wb6l8"]
[ext_resource type="Theme" uid="uid://ve18rbkeiwti" path="res://UI/text.tres" id="4_kotik"]
[node name="Node2D3" type="Node2D"]
script = ExtResource("1_clwwq")
[node name="Sprite2D" type="Sprite2D" parent="."]
position = Vector2(640, 359)
scale = Vector2(0.666, 0.666)
texture = ExtResource("1_60m3n")
[node name="Close" type="TextureButton" parent="."]
offset_left = 1241.0
offset_top = 11.0
offset_right = 1281.0
offset_bottom = 51.0
scale = Vector2(0.65, 0.65)
texture_pressed = ExtResource("2_wb6l8")
[node name="Minimize" type="TextureButton" parent="."]
offset_left = 1213.0
offset_top = 11.0
offset_right = 1253.0
offset_bottom = 51.0
scale = Vector2(0.66, 0.66)
texture_pressed = ExtResource("2_j8fs8")
[node name="Label" type="Label" parent="."]
offset_left = 32.0
offset_top = 625.0
offset_right = 332.0
offset_bottom = 690.0
theme = ExtResource("4_kotik")
text = "You made $
You lost $"
[connection signal="button_up" from="Close" to="." method="_on_close_button_up"]
[connection signal="button_up" from="Minimize" to="." method="_on_minimize_button_up"]
|