-
Notifications
You must be signed in to change notification settings - Fork 1
/
GameOver.tscn
68 lines (60 loc) · 1.45 KB
/
GameOver.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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://image_resources/gameoverscene.png" type="Texture" id=1]
[ext_resource path="res://Stark.otf" type="DynamicFontData" id=2]
[ext_resource path="res://GameOver.gd" type="Script" id=7]
[sub_resource type="DynamicFont" id=1]
size = 70
font_data = ExtResource( 2 )
[node name="GameOverScene" type="Node2D"]
script = ExtResource( 7 )
[node name="gameoverscene" type="Sprite" parent="."]
position = Vector2( 640, 360 )
texture = ExtResource( 1 )
[node name="teamAname" type="Label" parent="."]
margin_left = 136.0
margin_top = 216.0
margin_right = 641.0
margin_bottom = 366.0
custom_fonts/font = SubResource( 1 )
text = "TEAM A"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="teamAscore" type="Label" parent="."]
margin_left = 136.0
margin_top = 392.0
margin_right = 641.0
margin_bottom = 542.0
custom_fonts/font = SubResource( 1 )
text = "0"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="teamBscore" type="Label" parent="."]
margin_left = 640.0
margin_top = 392.0
margin_right = 1145.0
margin_bottom = 542.0
custom_fonts/font = SubResource( 1 )
text = "0"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="teamBname" type="Label" parent="."]
margin_left = 640.0
margin_top = 216.0
margin_right = 1145.0
margin_bottom = 366.0
custom_fonts/font = SubResource( 1 )
text = "TEAM B"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}