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
[gd_scene load_steps=4 format=2]

[ext_resource path="res://sprites/emptyheart.png" type="Texture" id=1]
[ext_resource path="res://sprites/fullhart.png" type="Texture" id=2]
[ext_resource path="res://ui/scripts/HpUi.gd" type="Script" id=3]

[node name="HpUi" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -277.0
margin_bottom = -169.0
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}

[node name="EmptyHarts" type="TextureRect" parent="."]
margin_right = 43.0
margin_bottom = 11.0
texture = ExtResource( 1 )
expand = true
stretch_mode = 2

[node name="FullHarts" type="TextureRect" parent="."]
margin_right = 15.0
margin_bottom = 11.0
texture = ExtResource( 2 )
expand = true
stretch_mode = 2