mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-04 11:51:17 +00:00
Fixed enemy spawns
This commit is contained in:
parent
c00d298443
commit
7a62f6a8cd
19 changed files with 263 additions and 147 deletions
|
|
@ -1,9 +1,12 @@
|
|||
[gd_scene load_steps=7 format=4 uid="uid://pym646ug0ha6"]
|
||||
[gd_scene load_steps=10 format=4 uid="uid://pym646ug0ha6"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b2j00riayxkit" path="res://Scripts/Controllers/RogueliteRoom.cs" id="1_y5eok"]
|
||||
[ext_resource type="Resource" uid="uid://cc53bb6th33hi" path="res://Resources/RogueliteMaps/RGHorizontal1x1.tres" id="2_y5eok"]
|
||||
[ext_resource type="TileSet" uid="uid://6k28roiljylj" path="res://Tilesets/factory_tileset.tres" id="5_0c8ec"]
|
||||
[ext_resource type="Script" uid="uid://8umfjejbkcsm" path="res://Scripts/Actors/RogueliteEnemySpawner.cs" id="5_y5eok"]
|
||||
[ext_resource type="Script" uid="uid://krean0uywtms" path="res://Scripts/TilemapAvoidance.cs" id="6_e2cwd"]
|
||||
[ext_resource type="Resource" uid="uid://qbo6avc7x64b" path="res://Resources/Enemies/Fairy_Guard.tres" id="6_lcbol"]
|
||||
[ext_resource type="Resource" uid="uid://cocl3qontm3be" path="res://Resources/Enemies/Base_Fairy.tres" id="7_kf55v"]
|
||||
|
||||
[sub_resource type="NavigationPolygon" id="NavigationPolygon_rlq0q"]
|
||||
vertices = PackedVector2Array(166, 58, 294, 58, 294, 134, 166, 134, 166, 150, 154, 150, 154, 134, 154, 58, 26, 134, 26, 58, 166, 10, 154, 10)
|
||||
|
|
@ -47,14 +50,30 @@ metadata/_edit_lock_ = true
|
|||
|
||||
[node name="EnemySpawners" type="Node2D" parent="."]
|
||||
|
||||
[node name="RogueliteEnemySpawner" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(57, 67)
|
||||
[node name="RogueliteEnemySpawner4" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(109, 81)
|
||||
script = ExtResource("5_y5eok")
|
||||
Enemy = ExtResource("6_lcbol")
|
||||
|
||||
[node name="RogueliteEnemySpawner2" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(88, 126)
|
||||
[node name="RogueliteEnemySpawner5" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(153, 127)
|
||||
script = ExtResource("5_y5eok")
|
||||
Enemy = ExtResource("6_lcbol")
|
||||
|
||||
[node name="RogueliteEnemySpawner3" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(266, 122)
|
||||
[node name="RogueliteEnemySpawner6" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(172.798, 74.3138)
|
||||
script = ExtResource("5_y5eok")
|
||||
Enemy = ExtResource("7_kf55v")
|
||||
|
||||
[node name="RogueliteEnemySpawner7" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(199.927, 99.9863)
|
||||
script = ExtResource("5_y5eok")
|
||||
Enemy = ExtResource("7_kf55v")
|
||||
|
||||
[node name="RogueliteEnemySpawner8" type="Marker2D" parent="EnemySpawners"]
|
||||
position = Vector2(82.4885, 130.393)
|
||||
script = ExtResource("5_y5eok")
|
||||
Enemy = ExtResource("7_kf55v")
|
||||
|
||||
[node name="NavigationRegion2D" type="NavigationRegion2D" parent="."]
|
||||
visible = false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue