-
Notifications
You must be signed in to change notification settings - Fork 1
/
Game Over.tscn
42 lines (37 loc) · 1.53 KB
/
Game Over.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
[gd_scene load_steps=9 format=2]
[ext_resource path="res://Game Over.gd" type="Script" id=1]
[ext_resource path="res://Assets/UI/Game Over.png" type="Texture" id=2]
[ext_resource path="res://Assets/Button/back.png" type="Texture" id=3]
[ext_resource path="res://Assets/Button/back pressed.png" type="Texture" id=4]
[ext_resource path="res://Assets/Button/back hover.png" type="Texture" id=5]
[ext_resource path="res://Assets/Button/exit.png" type="Texture" id=6]
[ext_resource path="res://Assets/Button/exit pressed.png" type="Texture" id=7]
[ext_resource path="res://Assets/Button/exit hover.png" type="Texture" id=8]
[node name="Game Over" type="Control"]
editor/display_folded = true
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 683, 384 )
texture = ExtResource( 2 )
[node name="BackBtn" type="TextureButton" parent="."]
margin_left = 553.0
margin_top = 325.0
margin_right = 974.0
margin_bottom = 517.0
rect_scale = Vector2( 0.7, 0.7 )
texture_normal = ExtResource( 3 )
texture_pressed = ExtResource( 4 )
texture_hover = ExtResource( 5 )
[node name="ExitBtn" type="TextureButton" parent="."]
margin_left = 553.0
margin_top = 475.0
margin_right = 974.0
margin_bottom = 667.0
rect_scale = Vector2( 0.7, 0.7 )
texture_normal = ExtResource( 6 )
texture_pressed = ExtResource( 7 )
texture_hover = ExtResource( 8 )
[connection signal="pressed" from="BackBtn" to="." method="_on_BackBtn_pressed"]
[connection signal="pressed" from="ExitBtn" to="." method="_on_ExitBtn_pressed"]