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
|
[gd_scene load_steps=11 format=2]
[ext_resource path="res://HealthBar.gd" type="Script" id=1]
[ext_resource path="res://GameOver.gd" type="Script" id=2]
[ext_resource path="res://assets/wordart.png" type="Texture" id=3]
[ext_resource path="res://assets/preview_4.tres" type="AudioStream" id=4]
[ext_resource path="res://CoinCount.gd" type="Script" id=5]
[ext_resource path="res://assets/MinecraftRegular-Bmg3.otf" type="DynamicFontData" id=7]
[ext_resource path="res://assets/wordart(1).png" type="Texture" id=8]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0, 1, 0, 1 )
[sub_resource type="StyleBoxFlat" id=2]
bg_color = Color( 0, 0, 0, 1 )
[sub_resource type="DynamicFont" id=3]
size = 600
outline_size = 50
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 7 )
[node name="HUD" type="CanvasLayer"]
[node name="HBoxContainer" type="HBoxContainer" parent="."]
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = -14.0
custom_constants/separation = 10
alignment = 2
[node name="Label" type="Label" parent="HBoxContainer"]
margin_right = 46.0
margin_bottom = 14.0
text = "Health:"
align = 2
[node name="HealthBar" type="ProgressBar" parent="HBoxContainer"]
margin_left = 56.0
margin_right = 1213.0
margin_bottom = 14.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_styles/fg = SubResource( 1 )
custom_styles/bg = SubResource( 2 )
value = 100.0
script = ExtResource( 1 )
[node name="Label2" type="Label" parent="HBoxContainer"]
margin_left = 1223.0
margin_right = 1262.0
margin_bottom = 14.0
text = "Coins:"
[node name="CoinCount" type="Label" parent="HBoxContainer"]
margin_left = 1272.0
margin_right = 1280.0
margin_bottom = 14.0
text = "0"
script = ExtResource( 5 )
[node name="GameOver" type="Sprite" parent="."]
position = Vector2( 626, 246 )
scale = Vector2( 0.171967, 0.186029 )
texture = ExtResource( 3 )
script = ExtResource( 2 )
[node name="GameOverCoinMessage" type="Sprite" parent="GameOver"]
position = Vector2( -488.465, 1451.39 )
scale = Vector2( 0.639108, 0.832261 )
texture = ExtResource( 8 )
[node name="GameOverCoinCount" type="Label" parent="GameOver/GameOverCoinMessage"]
margin_left = 3885.16
margin_top = -219.604
margin_right = 5987.16
margin_bottom = 983.396
custom_fonts/font = SubResource( 3 )
text = "0
"
script = ExtResource( 5 )
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="GameOver"]
pause_mode = 2
stream = ExtResource( 4 )
|