diff options
Diffstat (limited to 'components/healthbar/heart.tscn')
-rw-r--r-- | components/healthbar/heart.tscn | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/components/healthbar/heart.tscn b/components/healthbar/heart.tscn new file mode 100644 index 0000000..b4b14e5 --- /dev/null +++ b/components/healthbar/heart.tscn @@ -0,0 +1,14 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://textures/icons/heart_fill.png" type="Texture" id=1] +[ext_resource path="res://components/healthbar/heart.gd" type="Script" id=2] +[ext_resource path="res://textures/icons/heart.png" type="Texture" id=3] + +[node name="Node2D" type="Node2D"] +script = ExtResource( 2 ) + +[node name="fill" type="Sprite" parent="."] +texture = ExtResource( 1 ) + +[node name="notfill" type="Sprite" parent="."] +texture = ExtResource( 3 ) |