summaryrefslogtreecommitdiff
path: root/src/ui/hud/HUD.tscn
blob: be5f773c921ae574e57d787a2986bb8636c0b91f (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
58
59
60
61
62
63
64
[gd_scene load_steps=7 format=2]

[ext_resource path="res://ui/hud/progress_bars/scenes/DashProgress.tscn" type="PackedScene" id=1]
[ext_resource path="res://ui/hud/progress_bars/scenes/SlowProgress.tscn" type="PackedScene" id=2]
[ext_resource path="res://ui/hud/snake/scenes/SnakeHUD.tscn" type="PackedScene" id=3]
[ext_resource path="res://ui/hud/progress_bars/scenes/GrowthProgress.tscn" type="PackedScene" id=4]
[ext_resource path="res://ui/hud/progress_bars/scenes/JumpProgress.tscn" type="PackedScene" id=5]
[ext_resource path="res://ui/hud/actions/scenes/ActionsHUD.tscn" type="PackedScene" id=6]

[node name="HUD" type="MarginContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 4.0
margin_right = -4.0
margin_bottom = -4.0

[node name="VBox" type="VBoxContainer" parent="."]
margin_right = 312.0
margin_bottom = 172.0
custom_constants/separation = 100

[node name="StatsHUD" type="MarginContainer" parent="VBox"]
margin_right = 312.0
margin_bottom = 18.0

[node name="VBox" type="VBoxContainer" parent="VBox/StatsHUD"]
margin_right = 312.0
margin_bottom = 18.0
custom_constants/separation = 2

[node name="SnakeHUD" parent="VBox/StatsHUD/VBox" instance=ExtResource( 3 )]
margin_right = 312.0
margin_bottom = 8.0

[node name="HBoxProgressBars" type="HBoxContainer" parent="VBox/StatsHUD/VBox"]
margin_top = 10.0
margin_right = 312.0
margin_bottom = 18.0
custom_constants/separation = 4

[node name="GrowthProgress" parent="VBox/StatsHUD/VBox/HBoxProgressBars" instance=ExtResource( 4 )]
margin_right = 30.0
margin_bottom = 8.0

[node name="DashProgress" parent="VBox/StatsHUD/VBox/HBoxProgressBars" instance=ExtResource( 1 )]
margin_left = 34.0
margin_right = 64.0
margin_bottom = 8.0

[node name="SlowProgress" parent="VBox/StatsHUD/VBox/HBoxProgressBars" instance=ExtResource( 2 )]
margin_left = 68.0
margin_right = 98.0
margin_bottom = 8.0

[node name="JumpProgress" parent="VBox/StatsHUD/VBox/HBoxProgressBars" instance=ExtResource( 5 )]
margin_left = 102.0
margin_right = 132.0
margin_bottom = 8.0

[node name="ActionsHUD" parent="VBox" instance=ExtResource( 6 )]
margin_top = 118.0
margin_right = 312.0
margin_bottom = 162.0