summaryrefslogtreecommitdiff
path: root/src/ui/hud/progress_bars/scenes/GrowthProgress.tscn
blob: 624d05ec6a203aa2dda67c804bcb1c8ff683d19d (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
[gd_scene load_steps=6 format=2]

[ext_resource path="res://ui/hud/progress_bars/sprites/grow/grow_progress_over.png" type="Texture" id=1]
[ext_resource path="res://ui/hud/progress_bars/sprites/grow/grow_progress_under.png" type="Texture" id=2]
[ext_resource path="res://ui/hud/progress_bars/sprites/grow/grow_progress_progress.png" type="Texture" id=3]
[ext_resource path="res://ui/hud/progress_bars/scripts/growth_progress.gd" type="Script" id=4]
[ext_resource path="res://ui/hud/progress_bars/sprites/grow/grow_progress_icon.png" type="Texture" id=5]

[node name="GrowthProgress" 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( 2 )
texture_over = ExtResource( 1 )
texture_progress = ExtResource( 3 )