-
Notifications
You must be signed in to change notification settings - Fork 0
/
gameOverTwo.tscn
118 lines (101 loc) · 2.97 KB
/
gameOverTwo.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[gd_scene load_steps=4 format=1]
[ext_resource path="res://loseScreen.gd" type="Script" id=1]
[ext_resource path="res://assets/mansionBackground.jpg" type="Texture" id=2]
[ext_resource path="res://assets/loseScreen.png" type="Texture" id=3]
[node name="baseNode" type="Node"]
script/script = ExtResource( 1 )
[node name="bg" type="TextureFrame" parent="."]
anchor/left = 2
anchor/top = 2
anchor/right = 2
anchor/bottom = 2
focus/ignore_mouse = true
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 0.0
margin/top = 0.0
margin/right = 1.0
margin/bottom = 1.00167
texture = ExtResource( 2 )
modulate = Color( 0.851563, 0.299377, 0.299377, 1 )
expand = true
stretch_mode = 0
[node name="playAgain" type="Button" parent="."]
visibility/opacity = 0.7
anchor/left = 2
anchor/top = 2
anchor/right = 2
anchor/bottom = 2
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 0.438477
margin/top = 0.598333
margin/right = 0.576172
margin/bottom = 0.73
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
text = "Try Again\?"
flat = false
[node name="quit" type="Button" parent="."]
visibility/opacity = 0.7
anchor/left = 2
anchor/top = 2
anchor/right = 2
anchor/bottom = 2
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 0.438477
margin/top = 0.778333
margin/right = 0.576172
margin/bottom = 0.911667
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
text = "Quit\?"
flat = false
[node name="Label" type="Label" parent="."]
anchor/left = 2
anchor/top = 2
anchor/right = 2
anchor/bottom = 2
rect/scale = Vector2( 1.7, 1.7 )
focus/ignore_mouse = true
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 0
margin/left = 0.0
margin/top = 0.258333
margin/right = 0.591797
margin/bottom = 0.423333
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_colors/font_color_shadow = Color( 0.392157, 0.141176, 0.141176, 1 )
custom_constants/shadow_as_outline = 1
text = "As you leave the other guests behind, \nthe man in the storage room reveals his true intentions.\nYou\'re unarmed, and with no one else around he makes his move.\nHe quickly draws a knife, and attacks you, stabbing you to death.\nAfter hiding your body and moving to another room,\nthe killer continues to plan his next move.\nPerhaps look for a weapon first next time."
align = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="gameOver" type="TextureFrame" parent="."]
anchor/left = 2
anchor/top = 2
anchor/right = 2
anchor/bottom = 2
focus/ignore_mouse = true
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 0.15918
margin/top = 0.0
margin/right = 0.858398
margin/bottom = 0.363333
texture = ExtResource( 3 )
expand = true
stretch_mode = 4
[connection signal="pressed" from="playAgain" to="." method="_on_playAgain_pressed"]
[connection signal="pressed" from="quit" to="." method="_on_quit_pressed"]