-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame_over.tscn
49 lines (34 loc) · 1.46 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
43
44
45
46
47
[gd_scene load_steps=7 format=1]
[ext_resource path="res://game_over.gd" type="Script" id=1]
[ext_resource path="res://img/background.png" type="Texture" id=2]
[ext_resource path="res://img/game_over.png" type="Texture" id=3]
[ext_resource path="res://try_again_button.tscn" type="PackedScene" id=4]
[ext_resource path="res://fonts/bonus_font_less_space.fnt" type="BitmapFont" id=5]
[ext_resource path="res://highscore.tscn" type="PackedScene" id=6]
[node name="game_over" type="Node2D"]
script/script = ExtResource( 1 )
[node name="background" type="Sprite" parent="."]
transform/pos = Vector2( 512.688, 288.077 )
texture = ExtResource( 2 )
[node name="try_again_msg" type="Sprite" parent="."]
transform/pos = Vector2( 530.114, 148.419 )
transform/scale = Vector2( 0.51883, 0.51883 )
texture = ExtResource( 3 )
[node name="try_again_button" parent="." instance=ExtResource( 4 )]
transform/pos = Vector2( 523.726, 511.402 )
[node name="highscore_label" type="Label" parent="."]
focus/ignore_mouse = true
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 0
margin/left = 390.0
margin/top = 367.0
margin/right = 648.0
margin/bottom = 434.0
custom_fonts/font = ExtResource( 5 )
text = "Highscore: "
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="highscore" parent="." instance=ExtResource( 6 )]
[connection signal="try_again_button_released" from="try_again_button" to="." method="_on_try_again_button_try_again_button_released"]