blob: b0f7ca6100b5c1cbfda55376d7f8e524daada235 (
plain)
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
|
[gd_scene load_steps=6 format=2]
[ext_resource path="res://HealthBar.gd" type="Script" id=1]
[ext_resource path="res://Wordart.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]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0, 1, 0, 1 )
[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 = 1205.0
margin_bottom = 14.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_styles/fg = SubResource( 1 )
value = 100.0
script = ExtResource( 1 )
[node name="Label2" type="Label" parent="HBoxContainer"]
margin_left = 1215.0
margin_right = 1262.0
margin_bottom = 14.0
text = "Money:"
[node name="Label3" type="Label" parent="HBoxContainer"]
margin_left = 1272.0
margin_right = 1280.0
margin_bottom = 14.0
text = "0"
[node name="Wordart" type="Sprite" parent="."]
position = Vector2( 626, 372 )
scale = Vector2( 0.171967, 0.186029 )
texture = ExtResource( 3 )
script = ExtResource( 2 )
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="Wordart"]
pause_mode = 2
stream = ExtResource( 4 )
|