summaryrefslogtreecommitdiff
path: root/src/ui/hud/progress_bars/scenes/DashProgress.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/hud/progress_bars/scenes/DashProgress.tscn')
-rw-r--r--src/ui/hud/progress_bars/scenes/DashProgress.tscn24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ui/hud/progress_bars/scenes/DashProgress.tscn b/src/ui/hud/progress_bars/scenes/DashProgress.tscn
new file mode 100644
index 0000000..7b490cd
--- /dev/null
+++ b/src/ui/hud/progress_bars/scenes/DashProgress.tscn
@@ -0,0 +1,24 @@
+[gd_scene load_steps=6 format=2]
+
+[ext_resource path="res://ui/hud/progress_bars/sprites/dash/dash_progress_progress.png" type="Texture" id=1]
+[ext_resource path="res://ui/hud/progress_bars/sprites/dash/dash_progress_over.png" type="Texture" id=2]
+[ext_resource path="res://ui/hud/progress_bars/sprites/dash/dash_progress_under.png" type="Texture" id=3]
+[ext_resource path="res://ui/hud/progress_bars/scripts/dash_progress.gd" type="Script" id=4]
+[ext_resource path="res://ui/hud/progress_bars/sprites/dash/dash_progress_icon.png" type="Texture" id=5]
+
+[node name="DashProgress" type="HBoxContainer"]
+custom_constants/separation = 2
+script = ExtResource( 4 )
+
+[node name="Icon" type="TextureRect" parent="."]
+margin_right = 8.0
+margin_bottom = 8.0
+texture = ExtResource( 5 )
+
+[node name="Progress" type="TextureProgress" parent="."]
+margin_left = 10.0
+margin_right = 30.0
+margin_bottom = 8.0
+texture_under = ExtResource( 3 )
+texture_over = ExtResource( 2 )
+texture_progress = ExtResource( 1 )