Diffstat (limited to 'ui/scenes/HpUi.tscn')
| -rw-r--r-- | ui/scenes/HpUi.tscn | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ui/scenes/HpUi.tscn b/ui/scenes/HpUi.tscn new file mode 100644 index 0000000..7ba46ed --- /dev/null +++ b/ui/scenes/HpUi.tscn @@ -0,0 +1,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 |