diff options
author | bd <bdunahu@operationnull.com> | 2025-05-23 14:54:48 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-23 14:54:48 -0400 |
commit | c278c21c5019b2e82651fec10b819c3b29b8ff7d (patch) | |
tree | 3806d4f4510e8f64df3ca15da024e905e163da74 /scenes/gnome.tscn | |
parent | 3e15dfe033217d16e3198f044dd717408553218c (diff) |
Add gnome enemy, re-sprite wyvern
Diffstat (limited to 'scenes/gnome.tscn')
-rw-r--r-- | scenes/gnome.tscn | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scenes/gnome.tscn b/scenes/gnome.tscn new file mode 100644 index 0000000..dbda07e --- /dev/null +++ b/scenes/gnome.tscn @@ -0,0 +1,18 @@ +[gd_scene load_steps=4 format=3 uid="uid://devcq5vsnrrm7"] + +[ext_resource type="Script" uid="uid://ctq24sn8yo6me" path="res://scripts/gnome.gd" id="1_2fhd7"] +[ext_resource type="Texture2D" uid="uid://di2vybjsniag4" path="res://assets/tilemap.png" id="2_88agf"] + +[sub_resource type="CircleShape2D" id="CircleShape2D_220eh"] +radius = 8.06226 + +[node name="CrawlerGnome" type="CharacterBody2D"] +script = ExtResource("1_2fhd7") + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +shape = SubResource("CircleShape2D_220eh") + +[node name="Sprite2D" type="Sprite2D" parent="."] +texture = ExtResource("2_88agf") +region_enabled = true +region_rect = Rect2(416, 144, 16, 16) |