SolokNightAdventures/scenes/healthbar.tscn
2025-02-15 15:36:27 +01:00

80 lines
2.3 KiB
Text

[gd_scene load_steps=7 format=3 uid="uid://cpvniud8u5cye"]
[ext_resource type="Script" path="res://scripts/healthbar.gd" id="1_uekis"]
[ext_resource type="FontFile" uid="uid://ccibh2jw5qu60" path="res://assets/fonts/PixelOperator8.ttf" id="2_18f0b"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_tl3bd"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hjn1m"]
bg_color = Color(0.297826, 0.667312, 0.30976, 1)
corner_radius_top_left = 10
corner_radius_top_right = 10
corner_radius_bottom_right = 10
corner_radius_bottom_left = 10
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kp0or"]
bg_color = Color(0.295867, 0.295867, 0.295866, 1)
corner_radius_top_left = 10
corner_radius_top_right = 10
corner_radius_bottom_right = 10
corner_radius_bottom_left = 10
expand_margin_left = 1.0
expand_margin_top = 1.0
expand_margin_right = 1.0
expand_margin_bottom = 1.0
shadow_color = Color(0, 0, 0, 0.27451)
shadow_offset = Vector2(0, 1)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ovopx"]
bg_color = Color(1, 1, 1, 1)
corner_radius_top_left = 10
corner_radius_top_right = 10
corner_radius_bottom_right = 10
corner_radius_bottom_left = 10
[node name="Healthbar" type="ProgressBar"]
z_index = 1
offset_right = 240.0
offset_bottom = 10.0
theme_override_styles/background = SubResource("StyleBoxEmpty_tl3bd")
theme_override_styles/fill = SubResource("StyleBoxFlat_hjn1m")
value = 60.0
show_percentage = false
script = ExtResource("1_uekis")
[node name="Damagebar" type="ProgressBar" parent="."]
z_index = -1
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_styles/background = SubResource("StyleBoxFlat_kp0or")
theme_override_styles/fill = SubResource("StyleBoxFlat_ovopx")
value = 80.0
show_percentage = false
[node name="Timer" type="Timer" parent="."]
wait_time = 0.4
one_shot = true
[node name="Label" type="Label" parent="."]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -10.5
offset_top = -4.0
offset_right = 10.5
offset_bottom = 4.0
grow_horizontal = 2
grow_vertical = 2
theme_override_colors/font_color = Color(0, 0, 0, 1)
theme_override_fonts/font = ExtResource("2_18f0b")
theme_override_font_sizes/font_size = 16
text = "50"
[connection signal="timeout" from="Timer" to="." method="_on_timer_timeout"]