summaryrefslogtreecommitdiff
path: root/Mob.tscn
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-08-20 17:00:49 +0200
committerDaniel Weipert <git@mail.dweipert.de>2024-08-20 17:00:49 +0200
commit8d4e709f7e2390e06c3e412c20662e8bc21f0d0c (patch)
treeaec2214a1cc91524e78a7707c6c03612b6d346ba /Mob.tscn
initial commit
Diffstat (limited to 'Mob.tscn')
-rw-r--r--Mob.tscn54
1 files changed, 54 insertions, 0 deletions
diff --git a/Mob.tscn b/Mob.tscn
new file mode 100644
index 0000000..eecfc68
--- /dev/null
+++ b/Mob.tscn
@@ -0,0 +1,54 @@
+[gd_scene load_steps=5 format=3 uid="uid://cslaufgh6ber3"]
+
+[ext_resource type="Script" path="res://Mob.gd" id="1_bbcew"]
+[ext_resource type="Texture2D" uid="uid://b1b18rd0tqbar" path="res://core_outdoor.png" id="2_xcu8u"]
+
+[sub_resource type="CircleShape2D" id="CircleShape2D_rsrm7"]
+radius = 7.0
+
+[sub_resource type="RectangleShape2D" id="RectangleShape2D_iaxxs"]
+size = Vector2(8, 8)
+
+[node name="Mob" type="CharacterBody2D"]
+y_sort_enabled = true
+collision_mask = 0
+input_pickable = true
+script = ExtResource("1_bbcew")
+
+[node name="Sprite2D" type="Sprite2D" parent="."]
+texture_filter = 1
+scale = Vector2(0.25, 0.25)
+texture = ExtResource("2_xcu8u")
+region_enabled = true
+region_rect = Rect2(480, 880, 96, 64)
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
+shape = SubResource("CircleShape2D_rsrm7")
+
+[node name="NavigationBase" type="Area2D" parent="." groups=["mob_navigation_base"]]
+collision_mask = 2
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="NavigationBase"]
+shape = SubResource("RectangleShape2D_iaxxs")
+
+[node name="HP" type="ProgressBar" parent="."]
+unique_name_in_owner = true
+offset_left = -10.0
+offset_top = -12.0
+offset_right = 10.0
+offset_bottom = -8.0
+theme_override_font_sizes/font_size = 8
+show_percentage = false
+
+[node name="Label" type="Label" parent="."]
+offset_left = -3.0
+offset_top = 7.0
+offset_right = 3.0
+offset_bottom = 19.0
+theme_override_font_sizes/font_size = 8
+
+[connection signal="input_event" from="." to="." method="_on_input_event"]
+[connection signal="mouse_entered" from="." to="." method="_on_mouse_entered"]
+[connection signal="mouse_exited" from="." to="." method="_on_mouse_exited"]
+[connection signal="tree_exiting" from="." to="." method="_on_tree_exiting"]
+[connection signal="area_entered" from="NavigationBase" to="." method="_on_navigation_base_area_entered"]