-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwinScreen.tscn
92 lines (77 loc) · 2 KB
/
winScreen.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
[gd_scene load_steps=4 format=1]
[ext_resource path="res://winScreen.gd" type="Script" id=1]
[ext_resource path="res://assets/mansionBackground.jpg" type="Texture" id=2]
[ext_resource path="res://assets/winScreen.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.0380859
margin/top = -0.00333333
margin/right = 1.03711
margin/bottom = 1.02667
texture = ExtResource( 2 )
expand = true
stretch_mode = 0
[node name="text" 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.181641
margin/top = 0.0866667
margin/right = 0.859375
margin/bottom = 0.451667
texture = ExtResource( 3 )
stretch_mode = 0
[node name="playAgain" type="Button" parent="."]
visibility/opacity = 0.8
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.426758
margin/top = 0.616667
margin/right = 0.574219
margin/bottom = 0.75
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
text = "Play Again\?"
flat = false
[node name="quit" type="Button" parent="."]
visibility/opacity = 0.8
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.426758
margin/top = 0.781667
margin/right = 0.574219
margin/bottom = 0.915
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
text = "Quit"
flat = false
[connection signal="pressed" from="playAgain" to="." method="_on_playAgain_pressed"]
[connection signal="pressed" from="quit" to="." method="_on_quit_pressed"]