-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaFCBA.tmp
More file actions
68 lines (56 loc) · 2.16 KB
/
Copy pathplaFCBA.tmp
File metadata and controls
68 lines (56 loc) · 2.16 KB
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=8 format=3 uid="uid://cbhuxu0wqow51"]
[ext_resource type="FontFile" uid="uid://dtecw6viugugm" path="res://assets/fonts/coolvetica rg it.otf" id="1_a8xe5"]
[ext_resource type="Script" path="res://player_level_display.gd" id="1_f2rei"]
[ext_resource type="Script" path="res://XpBarTip.gd" id="3_21kbd"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xu62a"]
bg_color = Color(0, 0, 0, 1)
skew = Vector2(0.155, 0)
border_width_left = 2
border_width_top = 2
border_width_right = 2
border_width_bottom = 2
border_color = Color(1, 1, 1, 1)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l1j78"]
bg_color = Color(0, 0.203922, 0.454902, 1)
skew = Vector2(0.155, 0)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x6tli"]
bg_color = Color(0.364706, 0.627451, 1, 1)
skew = Vector2(0.155, 0)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qi3mk"]
bg_color = Color(1, 1, 1, 1)
skew = Vector2(0.155, 0)
[node name="PlayerLevelDisplay" type="Node2D"]
script = ExtResource("1_f2rei")
[node name="LevelDisplay" type="Label" parent="."]
offset_left = 6.0
offset_top = -6.0
offset_right = 102.0
offset_bottom = 33.0
theme_override_fonts/font = ExtResource("1_a8xe5")
theme_override_font_sizes/font_size = 32
text = "Level: 0"
[node name="XpPanel" type="Panel" parent="."]
offset_top = 30.0
offset_right = 280.0
offset_bottom = 54.0
theme_override_styles/panel = SubResource("StyleBoxFlat_xu62a")
[node name="NewXpBar" type="Panel" parent="."]
offset_left = 4.0
offset_top = 34.0
offset_right = 276.0
offset_bottom = 50.0
theme_override_styles/panel = SubResource("StyleBoxFlat_l1j78")
[node name="XpBar" type="Panel" parent="."]
offset_left = 4.0
offset_top = 34.0
offset_right = 44.0
offset_bottom = 50.0
theme_override_styles/panel = SubResource("StyleBoxFlat_x6tli")
[node name="XpBarTip" type="Panel" parent="XpBar"]
layout_mode = 0
offset_right = 3.0
offset_bottom = 16.0
theme_override_styles/panel = SubResource("StyleBoxFlat_qi3mk")
script = ExtResource("3_21kbd")
[connection signal="xp_growing" from="." to="XpBar/XpBarTip" method="_on_player_level_display_xp_growing"]
[connection signal="xp_stopped" from="." to="XpBar/XpBarTip" method="_on_player_level_display_xp_stopped"]