diff options
author | bd <bdunahu@operationnull.com> | 2025-05-29 18:29:15 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-29 18:29:15 -0400 |
commit | c4f3d4e0f6cae35c020e888be5689181b25342c5 (patch) | |
tree | 61c3f7aac37092ae4ff0ee163871e3fc40c87fcc /scenes | |
parent | c121b6fcd2286d4b7d3f905d1e34fb6547f915a4 (diff) |
Add the 'knight' crawler, more attempts to balance first waves
Diffstat (limited to 'scenes')
-rw-r--r-- | scenes/knight.tscn | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scenes/knight.tscn b/scenes/knight.tscn new file mode 100644 index 0000000..921e101 --- /dev/null +++ b/scenes/knight.tscn @@ -0,0 +1,15 @@ +[gd_scene load_steps=3 format=3 uid="uid://dh6732v1ja8yk"] + +[ext_resource type="Script" uid="uid://fyov84nkbjh8" path="res://scripts/knight.gd" id="1_dp28g"] + +[sub_resource type="CircleShape2D" id="CircleShape2D_220eh"] +radius = 8.06226 + +[node name="CrawlerKnight" type="CharacterBody2D"] +script = ExtResource("1_dp28g") + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +shape = SubResource("CircleShape2D_220eh") + +[node name="Sprite2D" type="Sprite2D" parent="."] +region_rect = Rect2(448, 0, 16, 16) |