This repository has been archived by the owner on Mar 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DraftGameOver.tscn
60 lines (51 loc) · 1.58 KB
/
DraftGameOver.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
60
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Res/Font/Oxanium-Regular.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://Res/Final/failedbg.png" type="Texture" id=2]
[ext_resource path="res://DraftGameOver.gd" type="Script" id=3]
[sub_resource type="DynamicFont" id=1]
size = 128
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=2]
size = 64
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=3]
size = 64
font_data = ExtResource( 1 )
[node name="Node2D" type="Node2D"]
script = ExtResource( 3 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 512, 288 )
texture = ExtResource( 2 )
[node name="RichTextLabel" type="RichTextLabel" parent="."]
margin_top = 48.0
margin_right = 1024.0
margin_bottom = 184.0
custom_fonts/normal_font = SubResource( 1 )
bbcode_enabled = true
bbcode_text = "[center]Game Over[/center]"
text = "Game Over"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="YearLabel" type="RichTextLabel" parent="."]
margin_top = 248.0
margin_right = 1024.0
margin_bottom = 384.0
custom_fonts/normal_font = SubResource( 2 )
bbcode_enabled = true
bbcode_text = "[center]You survived 28 years of climate change.[/center]"
text = "You survived 28 years of climate change."
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="."]
margin_left = 288.0
margin_top = 432.0
margin_right = 736.0
margin_bottom = 560.0
custom_fonts/font = SubResource( 3 )
text = "Try Again"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]