Remove SimpleDungeons plugin
This commit is contained in:
@@ -12,8 +12,6 @@ public partial class DungeonFloor : Node3D, IDungeonFloor
|
||||
{
|
||||
public override void _Notification(int what) => this.Notify(what);
|
||||
|
||||
[Node] public GodotObject DungeonGenerator { get; set; } = default!;
|
||||
|
||||
[Node] public EnemyDatabase EnemyDatabase { get; set; } = default!;
|
||||
|
||||
private Transform3D _playerSpawnPoint;
|
||||
@@ -24,40 +22,37 @@ public partial class DungeonFloor : Node3D, IDungeonFloor
|
||||
|
||||
public void InitializeDungeon()
|
||||
{
|
||||
Rooms = [];
|
||||
Rooms = FindAllDungeonRooms([.. GetChildren()], Rooms);
|
||||
_playerSpawnPoint = RandomizePlayerSpawnPoint();
|
||||
var monsterRooms = Rooms.OfType<MonsterRoom>();
|
||||
foreach (var room in monsterRooms)
|
||||
room.SpawnEnemies(EnemyDatabase);
|
||||
DungeonGenerator.EmitSignal("done_generating");
|
||||
Rooms = [];
|
||||
Rooms = FindAllDungeonRooms([.. GetChildren()], Rooms);
|
||||
_playerSpawnPoint = RandomizePlayerSpawnPoint();
|
||||
var monsterRooms = Rooms.OfType<MonsterRoom>();
|
||||
foreach (var room in monsterRooms)
|
||||
room.SpawnEnemies(EnemyDatabase);
|
||||
}
|
||||
|
||||
public Transform3D GetPlayerSpawnPoint() => new Transform3D(_playerSpawnPoint.Basis, new Vector3(_playerSpawnPoint.Origin.X, -1.75f, _playerSpawnPoint.Origin.Z));
|
||||
|
||||
private Transform3D RandomizePlayerSpawnPoint()
|
||||
{
|
||||
var randomSpawnLocations = Rooms
|
||||
.OfType<MonsterRoom>()
|
||||
.Select(x => x.PlayerSpawn);
|
||||
var godotCollection = new Godot.Collections.Array<Marker3D>(randomSpawnLocations);
|
||||
var result = godotCollection.PickRandom();
|
||||
return result.GlobalTransform;
|
||||
var randomSpawnLocations = Rooms
|
||||
.OfType<MonsterRoom>()
|
||||
.Select(x => x.PlayerSpawn);
|
||||
var godotCollection = new Godot.Collections.Array<Marker3D>(randomSpawnLocations);
|
||||
var result = godotCollection.PickRandom();
|
||||
return result.GlobalTransform;
|
||||
}
|
||||
|
||||
private static ImmutableList<IDungeonRoom> FindAllDungeonRooms(List<Node> nodesToSearch, ImmutableList<IDungeonRoom> roomsFound)
|
||||
{
|
||||
if (nodesToSearch.Count == 0)
|
||||
return roomsFound;
|
||||
if (nodesToSearch.Count == 0)
|
||||
return roomsFound;
|
||||
|
||||
foreach (var node in nodesToSearch)
|
||||
{
|
||||
if (node is IDungeonRoom dungeonRoom)
|
||||
roomsFound = roomsFound.Add(dungeonRoom);
|
||||
if (node.HasSignal("dungeon_done_generating"))
|
||||
node.EmitSignal("dungeon_done_generating");
|
||||
}
|
||||
foreach (var node in nodesToSearch)
|
||||
{
|
||||
if (node is IDungeonRoom dungeonRoom)
|
||||
roomsFound = roomsFound.Add(dungeonRoom);
|
||||
}
|
||||
|
||||
return FindAllDungeonRooms(nodesToSearch.SelectMany(x => x.GetChildren()).ToList(), roomsFound);
|
||||
return FindAllDungeonRooms([.. nodesToSearch.SelectMany(x => x.GetChildren())], roomsFound);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
extends Node
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
$"../..".connect("dungeon_done_generating", remove_unused_doors)
|
||||
|
||||
func remove_unused_doors():
|
||||
for door in $"../..".get_doors():
|
||||
if door.get_room_leads_to() == null:
|
||||
door.door_node.queue_free()
|
||||
@@ -1 +0,0 @@
|
||||
uid://yl7wyeo5m725
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://bh8wgd536f317"]
|
||||
[gd_scene load_steps=16 format=3 uid="uid://bi8jggqen30w6"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_5qwu0"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_w3178"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="3_5qwu0"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="4_w3178"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="5_mqac6"]
|
||||
@@ -11,8 +10,6 @@
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="9_k2pbf"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="10_4abo2"]
|
||||
[ext_resource type="PackedScene" uid="uid://d2k2v4bcybx3k" path="res://src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn" id="11_h4n5t"]
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="12_6ccoi"]
|
||||
[ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="13_xw5po"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="14_b8w6w"]
|
||||
[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="15_optp8"]
|
||||
[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="16_h86t4"]
|
||||
@@ -36,402 +33,242 @@ script = ExtResource("1_5qwu0")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_xw4dv")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_w3178")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_5qwu0")])
|
||||
corridor_room_scene = ExtResource("4_w3178")
|
||||
dungeon_size = Vector3i(40, 1, 40)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
heuristic_scale = 3.0
|
||||
corridor_cost_multiplier = 0.1
|
||||
show_debug_in_editor = false
|
||||
hide_debug_visuals_for_all_generated_rooms = false
|
||||
|
||||
[node name="Antechamber 3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_mqac6")]
|
||||
[node name="Antechamber 3" parent="NavigationRegion3D" instance=ExtResource("5_mqac6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -16)
|
||||
|
||||
[node name="Gallery Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_0v4w1")]
|
||||
[node name="Gallery Room" parent="NavigationRegion3D" instance=ExtResource("6_0v4w1")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -68, 0, -8)
|
||||
|
||||
[node name="Pit Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_5qwu0")]
|
||||
[node name="Pit Room B" parent="NavigationRegion3D" instance=ExtResource("7_5qwu0")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -54)
|
||||
|
||||
[node name="Antechamber 4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_w3178")]
|
||||
[node name="Antechamber 4" parent="NavigationRegion3D" instance=ExtResource("8_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -8)
|
||||
|
||||
[node name="Balcony Room 2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_k2pbf")]
|
||||
[node name="Balcony Room 2" parent="NavigationRegion3D" instance=ExtResource("9_k2pbf")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 4, 0, -50)
|
||||
|
||||
[node name="Pedestal Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_4abo2")]
|
||||
[node name="Pedestal Room" parent="NavigationRegion3D" instance=ExtResource("10_4abo2")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, 16)
|
||||
|
||||
[node name="Item Transfer Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_h4n5t")]
|
||||
[node name="Item Transfer Room B" parent="NavigationRegion3D" instance=ExtResource("11_h4n5t")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 12)
|
||||
|
||||
[node name="Floor Exit B_0" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_5qwu0")]
|
||||
[node name="Floor Exit B_0" parent="NavigationRegion3D" instance=ExtResource("3_5qwu0")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -70, 0, -34)
|
||||
script = ExtResource("12_6ccoi")
|
||||
size_in_voxels = Vector3i(5, 1, 9)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 3
|
||||
|
||||
[node name="Corridor_1" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_1" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_2" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_2" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_3" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_3" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_4" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_4" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_5" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_5" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_6" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_6" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_7" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_7" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_8" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_8" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_9" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_10" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -10)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_11" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -14)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_12" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -18)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_13" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -22)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_14" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -26)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_15" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -30)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_16" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_17" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_18" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_19" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_20" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_21" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -30)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_22" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -26)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_23" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -22)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_24" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -18)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_25" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -54)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_26" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -54)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_27" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -54)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_28" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -50)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_29" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -50)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_30" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -50)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_31" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -46)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_32" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -42)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_33" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -38)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_34" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_35" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_36" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_37" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_38" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -34)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_39" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_40" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_41" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_42" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_43" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_44" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_45" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_46" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_47" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_48" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_49" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_50" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_51" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_52" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_53" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_54" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_55" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_56" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_57" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_58" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_59" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 6)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_60" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_61" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_62" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_63" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_64" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_65" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_66" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_67" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_68" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -2)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_69" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -54)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_70" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_70" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, -54)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Corridor_71" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")]
|
||||
[node name="Corridor_71" parent="NavigationRegion3D" instance=ExtResource("4_w3178")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, -54)
|
||||
script = ExtResource("13_xw5po")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=17 format=3 uid="uid://bpqm38kxonb35"]
|
||||
[gd_scene load_steps=16 format=3 uid="uid://bpqm38kxonb35"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_hwssm"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_f10ye"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="3_5wjmx"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="4_5dvb6"]
|
||||
[ext_resource type="PackedScene" uid="uid://cypdcaqeylnwl" path="res://src/map/dungeon/rooms/Set B/27. Water Room B.tscn" id="5_gt56l"]
|
||||
@@ -34,199 +33,186 @@ script = ExtResource("1_hwssm")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_xw4dv")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_f10ye")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_5wjmx")])
|
||||
corridor_room_scene = ExtResource("4_5dvb6")
|
||||
dungeon_size = Vector3i(40, 1, 40)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
heuristic_scale = 3.0
|
||||
corridor_cost_multiplier = 0.1
|
||||
show_debug_in_editor = false
|
||||
hide_debug_visuals_for_all_generated_rooms = false
|
||||
|
||||
[node name="Water Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_gt56l")]
|
||||
[node name="Water Room B" parent="NavigationRegion3D" instance=ExtResource("5_gt56l")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 0)
|
||||
|
||||
[node name="Long Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_rkuht")]
|
||||
[node name="Long Room B" parent="NavigationRegion3D" instance=ExtResource("6_rkuht")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 42)
|
||||
|
||||
[node name="Column Circle Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_hwssm")]
|
||||
[node name="Column Circle Room" parent="NavigationRegion3D" instance=ExtResource("7_hwssm")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 14, 0, 10)
|
||||
|
||||
[node name="Dismantled Saint\'s Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_f10ye")]
|
||||
[node name="Dismantled Saint\'s Room" parent="NavigationRegion3D" instance=ExtResource("8_f10ye")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 42)
|
||||
|
||||
[node name="Proscenium\'s Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_5wjmx")]
|
||||
[node name="Proscenium\'s Room" parent="NavigationRegion3D" instance=ExtResource("9_5wjmx")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 10)
|
||||
|
||||
[node name="Puer\'s Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_5dvb6")]
|
||||
[node name="Puer\'s Room" parent="NavigationRegion3D" instance=ExtResource("10_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -14)
|
||||
|
||||
[node name="GesthemiisRoom" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_2me6y")]
|
||||
[node name="GesthemiisRoom" parent="NavigationRegion3D" instance=ExtResource("11_2me6y")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -58, 0, -58)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D"]
|
||||
|
||||
[node name="Floor Exit B_0" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("3_5wjmx")]
|
||||
[node name="Floor Exit B_0" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("3_5wjmx")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -26)
|
||||
|
||||
[node name="Corridor_1" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_1" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 26)
|
||||
|
||||
[node name="Corridor_2" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_2" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 10)
|
||||
|
||||
[node name="Corridor_3" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_3" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 14)
|
||||
|
||||
[node name="Corridor_4" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_4" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 14)
|
||||
|
||||
[node name="Corridor_5" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_5" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 14)
|
||||
|
||||
[node name="Corridor_6" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_6" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 14)
|
||||
|
||||
[node name="Corridor_7" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_7" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 18)
|
||||
|
||||
[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_8" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 22)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 26)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 30)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 34)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 38)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 42)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 42)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 42)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 42)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 42)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 26)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 22)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 22)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 22)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 22)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 18)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 14)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 10)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 10)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 10)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -14)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -14)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -14)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -14)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -34)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -38)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -38)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -38)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -38)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -38)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -38)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -38)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -38)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -38)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -34)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -30)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -26)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -22)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -18)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 6)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -6)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -6)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/RoomsContainer" instance=ExtResource("4_5dvb6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -6)
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
|
||||
@@ -1,12 +1,10 @@
|
||||
[gd_scene load_steps=54 format=4 uid="uid://bc1sp6xwe0j65"]
|
||||
[gd_scene load_steps=52 format=4 uid="uid://bc1sp6xwe0j65"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_0ecnn"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_cxmwa"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_gkkr3"]
|
||||
[ext_resource type="PackedScene" uid="uid://dn5546yqyntfr" path="res://src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn" id="6_atq1f"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="8_5rblf"]
|
||||
[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="9_atq1f"]
|
||||
[ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="9_lcc45"]
|
||||
[ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="10_5rblf"]
|
||||
[ext_resource type="Texture2D" uid="uid://crsw35eypj6ry" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_WALL TILE 1.jpg" id="11_qx5t8"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="12_aw26s"]
|
||||
@@ -612,259 +610,244 @@ script = ExtResource("1_0ecnn")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_xw4dv")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_cxmwa")
|
||||
room_scenes = Array[PackedScene]([ExtResource("8_5rblf"), ExtResource("3_gkkr3"), ExtResource("12_n02rw"), ExtResource("6_atq1f")])
|
||||
corridor_room_scene = ExtResource("13_ofywd")
|
||||
dungeon_size = Vector3i(20, 1, 20)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
heuristic_scale = 3.0
|
||||
corridor_cost_multiplier = 0.1
|
||||
show_debug_in_editor = false
|
||||
hide_debug_visuals_for_all_generated_rooms = false
|
||||
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_gkkr3")]
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D" instance=ExtResource("3_gkkr3")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0, 0, -14)
|
||||
|
||||
[node name="Item Transfer Room_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_atq1f")]
|
||||
[node name="Item Transfer Room_1" parent="NavigationRegion3D" instance=ExtResource("6_atq1f")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -22, 0, 8)
|
||||
|
||||
[node name="Floor Exit A_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("12_n02rw")]
|
||||
[node name="Floor Exit A_2" parent="NavigationRegion3D" instance=ExtResource("12_n02rw")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 30, 0, -18)
|
||||
|
||||
[node name="BasinRoom_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_5rblf")]
|
||||
[node name="BasinRoom_3" parent="NavigationRegion3D" instance=ExtResource("8_5rblf")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 16, 0, 10)
|
||||
|
||||
[node name="Corridor_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_4" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -18)
|
||||
|
||||
[node name="Corridor_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_5" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -14)
|
||||
|
||||
[node name="Corridor_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_6" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -10)
|
||||
|
||||
[node name="Corridor_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_7" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -10)
|
||||
|
||||
[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_8" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -6)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -2)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 2)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 6)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 10)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 14)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 18)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 18)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 18)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -10)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -14)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -18)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -22)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -26)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -26)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -26)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -30)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -34)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -38)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -38)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -38)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -38)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -22)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -18)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -14)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -10)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -6)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -2)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -2)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -2)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 2)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("13_ofywd")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 6)
|
||||
|
||||
[node name="Corridor_41" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
[node name="Corridor_41" type="Node3D" parent="NavigationRegion3D"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 10)
|
||||
script = ExtResource("9_lcc45")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
|
||||
[node name="Model" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"]
|
||||
[node name="Model" type="Node3D" parent="NavigationRegion3D/Corridor_41"]
|
||||
script = ExtResource("10_5rblf")
|
||||
|
||||
[node name="18_A1_CORRIDOR_A" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model"]
|
||||
[node name="18_A1_CORRIDOR_A" type="Node3D" parent="NavigationRegion3D/Corridor_41/Model"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.88616, -2.025, -0.989241)
|
||||
|
||||
[node name="FLOOR_CEILING" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
[node name="FLOOR_CEILING" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278)
|
||||
mesh = SubResource("ArrayMesh_wxha4")
|
||||
skeleton = NodePath("")
|
||||
|
||||
[node name="CA_COLUMN_001" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
[node name="CA_COLUMN_001" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278)
|
||||
mesh = SubResource("ArrayMesh_vt22i")
|
||||
skeleton = NodePath("")
|
||||
|
||||
[node name="CA_COLUMN_002" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
[node name="CA_COLUMN_002" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278)
|
||||
mesh = SubResource("ArrayMesh_yrm7d")
|
||||
skeleton = NodePath("")
|
||||
|
||||
[node name="CA_COLUMN_003" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
[node name="CA_COLUMN_003" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278)
|
||||
mesh = SubResource("ArrayMesh_ltk4i")
|
||||
skeleton = NodePath("")
|
||||
|
||||
[node name="CA_COLUMN" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
[node name="CA_COLUMN" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Model/18_A1_CORRIDOR_A"]
|
||||
transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278)
|
||||
mesh = SubResource("ArrayMesh_pjk1a")
|
||||
skeleton = NodePath("")
|
||||
|
||||
[node name="Collision" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"]
|
||||
[node name="Collision" type="Node3D" parent="NavigationRegion3D/Corridor_41"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision"]
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D/Corridor_41/Collision"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.88616, -2.025, -0.989241)
|
||||
collision_layer = 2147483649
|
||||
collision_mask = 2147483649
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"]
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/Corridor_41/Collision/StaticBody3D"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.7192, 2.25405, -0.816737)
|
||||
shape = SubResource("CylinderShape3D_xywry")
|
||||
|
||||
[node name="CollisionShape3D2" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"]
|
||||
[node name="CollisionShape3D2" type="CollisionShape3D" parent="NavigationRegion3D/Corridor_41/Collision/StaticBody3D"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.13273, 2.03746, -0.752249)
|
||||
shape = SubResource("CylinderShape3D_7a87o")
|
||||
|
||||
[node name="CollisionShape3D3" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"]
|
||||
[node name="CollisionShape3D3" type="CollisionShape3D" parent="NavigationRegion3D/Corridor_41/Collision/StaticBody3D"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.14647, 1.81901, 2.73139)
|
||||
shape = SubResource("CylinderShape3D_adgr5")
|
||||
|
||||
[node name="CollisionShape3D4" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"]
|
||||
[node name="CollisionShape3D4" type="CollisionShape3D" parent="NavigationRegion3D/Corridor_41/Collision/StaticBody3D"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.637, 2.14158, 2.73139)
|
||||
shape = SubResource("CylinderShape3D_3j8ld")
|
||||
|
||||
[node name="CollisionShape3D5" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"]
|
||||
[node name="CollisionShape3D5" type="CollisionShape3D" parent="NavigationRegion3D/Corridor_41/Collision/StaticBody3D"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.88863, -0.243546, 0.997182)
|
||||
shape = SubResource("BoxShape3D_xywry")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"]
|
||||
[node name="Doors" type="Node3D" parent="NavigationRegion3D/Corridor_41"]
|
||||
|
||||
[node name="DOOR?2" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors"]
|
||||
[node name="DOOR?2" type="CSGBox3D" parent="NavigationRegion3D/Corridor_41/Doors"]
|
||||
transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0498385, 0.0586318, 1.96147)
|
||||
use_collision = true
|
||||
size = Vector3(3.90674, 4, 0.1)
|
||||
material = SubResource("StandardMaterial3D_3j8ld")
|
||||
|
||||
[node name="Box" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?2"]
|
||||
[node name="Box" type="CSGBox3D" parent="NavigationRegion3D/Corridor_41/Doors/DOOR?2"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437)
|
||||
material_override = SubResource("StandardMaterial3D_0b3sx")
|
||||
size = Vector3(4, 4, 0.203003)
|
||||
material = SubResource("StandardMaterial3D_adgr5")
|
||||
|
||||
[node name="CA_WALL_3" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?2"]
|
||||
[node name="CA_WALL_3" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Doors/DOOR?2"]
|
||||
transform = Transform3D(-8.74228e-08, 0.10779, 1.73929e-20, -2, -4.71165e-09, 3.97904e-13, 3.97904e-13, 0, 2, 1.84215, 0.088098, -2.03793)
|
||||
mesh = SubResource("ArrayMesh_ux4sw")
|
||||
skeleton = NodePath("")
|
||||
|
||||
[node name="DOOR?3" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors"]
|
||||
[node name="DOOR?3" type="CSGBox3D" parent="NavigationRegion3D/Corridor_41/Doors"]
|
||||
transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, -1.95513, 0.0586318, -0.00728679)
|
||||
use_collision = true
|
||||
size = Vector3(3.90674, 4, 0.1)
|
||||
material = SubResource("StandardMaterial3D_3j8ld")
|
||||
|
||||
[node name="Box" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?3"]
|
||||
[node name="Box" type="CSGBox3D" parent="NavigationRegion3D/Corridor_41/Doors/DOOR?3"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437)
|
||||
material_override = SubResource("StandardMaterial3D_0b3sx")
|
||||
size = Vector3(4, 4, 0.203003)
|
||||
material = SubResource("StandardMaterial3D_4sxun")
|
||||
|
||||
[node name="CA_WALL_4" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?3"]
|
||||
[node name="CA_WALL_4" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Doors/DOOR?3"]
|
||||
transform = Transform3D(3.82137e-15, 0.10779, 8.74228e-08, 8.74228e-08, -4.71165e-09, 2, 2, 0, -8.74228e-08, 1.84215, -0.0691742, 1.91687)
|
||||
mesh = SubResource("ArrayMesh_tmqha")
|
||||
skeleton = NodePath("")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"]
|
||||
[node name="Spawn Points" type="Node3D" parent="NavigationRegion3D/Corridor_41"]
|
||||
|
||||
[node name="Room" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"]
|
||||
[node name="Room" type="Node3D" parent="NavigationRegion3D/Corridor_41"]
|
||||
|
||||
[node name="Room" type="Area3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Room"]
|
||||
[node name="Room" type="Area3D" parent="NavigationRegion3D/Corridor_41/Room"]
|
||||
unique_name_in_owner = true
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 11.8436, 0)
|
||||
collision_layer = 0
|
||||
collision_mask = 10
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Room/Room"]
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/Corridor_41/Room/Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00170277, -11.8564, -1.19209e-07)
|
||||
shape = SubResource("BoxShape3D_7uihh")
|
||||
|
||||
[node name="Minimap" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"]
|
||||
[node name="Minimap" type="Node3D" parent="NavigationRegion3D/Corridor_41"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0)
|
||||
|
||||
[node name="Minimap" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Minimap"]
|
||||
[node name="Minimap" type="MeshInstance3D" parent="NavigationRegion3D/Corridor_41/Minimap"]
|
||||
unique_name_in_owner = true
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.03602, 0)
|
||||
visible = false
|
||||
@@ -872,8 +855,6 @@ layers = 2
|
||||
mesh = SubResource("PlaneMesh_adgr5")
|
||||
skeleton = NodePath("../..")
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
collision_mask = 2147483648
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=21 format=3 uid="uid://dmiqwmivkjgmq"]
|
||||
[gd_scene load_steps=20 format=3 uid="uid://dmiqwmivkjgmq"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="1_afeds"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_7txs6"]
|
||||
[ext_resource type="PackedScene" uid="uid://i781lbf2wb22" path="res://src/map/dungeon/rooms/Set A/04. Antechamber B.tscn" id="4_k6xgr"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_r7shj"]
|
||||
@@ -75,230 +74,220 @@ script = ExtResource("5_ld0kt")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_23nxb")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("1_afeds")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_7txs6"), ExtResource("4_k6xgr"), ExtResource("9_lpelw"), ExtResource("5_geyju"), ExtResource("9_4i2f8"), ExtResource("4_r7shj"), ExtResource("6_jgovx"), ExtResource("10_5omre"), ExtResource("8_lpc1g"), ExtResource("12_e0s3j")])
|
||||
corridor_room_scene = ExtResource("7_86if8")
|
||||
dungeon_size = Vector3i(30, 1, 30)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
show_debug_in_editor = false
|
||||
|
||||
[node name="Pit Room A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_lpelw")]
|
||||
[node name="Pit Room A_0" parent="NavigationRegion3D" instance=ExtResource("9_lpelw")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 10, 0, -42)
|
||||
|
||||
[node name="Balcony Room A_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_geyju")]
|
||||
[node name="Balcony Room A_1" parent="NavigationRegion3D" instance=ExtResource("5_geyju")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -4)
|
||||
|
||||
[node name="Water Room_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_lpc1g")]
|
||||
[node name="Water Room_2" parent="NavigationRegion3D" instance=ExtResource("8_lpc1g")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -46, 0, 4)
|
||||
|
||||
[node name="BasinRoom_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_r7shj")]
|
||||
[node name="BasinRoom_3" parent="NavigationRegion3D" instance=ExtResource("4_r7shj")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -52, 0, 50)
|
||||
|
||||
[node name="Column Room_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_jgovx")]
|
||||
[node name="Column Room_4" parent="NavigationRegion3D" instance=ExtResource("6_jgovx")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -32, 0, -38)
|
||||
|
||||
[node name="Statue Room_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_4i2f8")]
|
||||
[node name="Statue Room_5" parent="NavigationRegion3D" instance=ExtResource("9_4i2f8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16, 0, 8)
|
||||
|
||||
[node name="Antechamber B_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_k6xgr")]
|
||||
[node name="Antechamber B_6" parent="NavigationRegion3D" instance=ExtResource("4_k6xgr")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 52)
|
||||
|
||||
[node name="Antechamber A_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_7txs6")]
|
||||
[node name="Antechamber A_7" parent="NavigationRegion3D" instance=ExtResource("3_7txs6")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 24, 0, 50)
|
||||
|
||||
[node name="Floor Exit A_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("12_e0s3j")]
|
||||
[node name="Floor Exit A_8" parent="NavigationRegion3D" instance=ExtResource("12_e0s3j")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 42, 0, 34)
|
||||
|
||||
[node name="Long Room_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_5omre")]
|
||||
[node name="Long Room_9" parent="NavigationRegion3D" instance=ExtResource("10_5omre")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -8, 0, 30)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -22)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -22)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -22)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -22)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -22)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -22)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -6)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -10)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -2)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 2)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 6)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 10)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 14)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 14)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 14)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 30)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 30)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 30)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 34)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 38)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 42)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 46)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 50)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -22)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -22)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -22)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -22)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -26)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -30)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -34)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -38)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -22)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -22)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -6)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -2)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -2)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 50)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 54)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 54)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 54)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 54)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 54)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 54)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 54)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 50)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 50)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 50)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 46)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 46)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 30)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 30)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 26)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 26)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 22)
|
||||
|
||||
[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 22)
|
||||
|
||||
[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 18)
|
||||
|
||||
[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 14)
|
||||
|
||||
[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 14)
|
||||
|
||||
[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 14)
|
||||
|
||||
[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_86if8")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("7_86if8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 14)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D"]
|
||||
visible = false
|
||||
|
||||
[node name="Altar Environment" type="WorldEnvironment" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
[node name="Altar Environment" type="WorldEnvironment" parent="NavigationRegion3D"]
|
||||
environment = SubResource("Environment_sn0iw")
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://dl1scvkp8r5sw"]
|
||||
[gd_scene load_steps=18 format=3 uid="uid://dl1scvkp8r5sw"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="1_ou8lo"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_yeqmp"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_2o7kq"]
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="5_mo2td"]
|
||||
@@ -36,277 +35,268 @@ script = ExtResource("5_mo2td")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_0ea7q")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("1_ou8lo")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_yeqmp"), ExtResource("4_2o7kq"), ExtResource("5_wo0bu"), ExtResource("6_o010k"), ExtResource("8_06hbf"), ExtResource("9_ym1ny"), ExtResource("9_imrv0"), ExtResource("10_1j6d5"), ExtResource("11_0ea7q")])
|
||||
corridor_room_scene = ExtResource("7_qjouh")
|
||||
dungeon_size = Vector3i(30, 1, 30)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="Floor Exit A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_0ea7q")]
|
||||
[node name="Floor Exit A_0" parent="NavigationRegion3D" instance=ExtResource("11_0ea7q")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -34, 0, -22)
|
||||
|
||||
[node name="RansRoom_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_1j6d5")]
|
||||
[node name="RansRoom_1" parent="NavigationRegion3D" instance=ExtResource("10_1j6d5")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 8, 0, 10)
|
||||
|
||||
[node name="BasinRoom_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_2o7kq")]
|
||||
[node name="BasinRoom_2" parent="NavigationRegion3D" instance=ExtResource("4_2o7kq")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -32, 0, -46)
|
||||
|
||||
[node name="Water Room_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_06hbf")]
|
||||
[node name="Water Room_3" parent="NavigationRegion3D" instance=ExtResource("8_06hbf")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 38, 0, 16)
|
||||
|
||||
[node name="Column Room_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_o010k")]
|
||||
[node name="Column Room_4" parent="NavigationRegion3D" instance=ExtResource("6_o010k")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -46, 0, 20)
|
||||
|
||||
[node name="Balcony Room A_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_wo0bu")]
|
||||
[node name="Balcony Room A_5" parent="NavigationRegion3D" instance=ExtResource("5_wo0bu")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -44)
|
||||
|
||||
[node name="Pit Room A_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_imrv0")]
|
||||
[node name="Pit Room A_6" parent="NavigationRegion3D" instance=ExtResource("9_imrv0")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 2, 0, -26)
|
||||
|
||||
[node name="Antechamber A_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_yeqmp")]
|
||||
[node name="Antechamber A_7" parent="NavigationRegion3D" instance=ExtResource("3_yeqmp")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 52, 0, 50)
|
||||
|
||||
[node name="Statue Room_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_ym1ny")]
|
||||
[node name="Statue Room_8" parent="NavigationRegion3D" instance=ExtResource("9_ym1ny")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -20, 0, 4)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -22)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -18)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -14)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -10)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -10)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -10)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -10)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -10)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -10)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -10)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -10)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -10)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -10)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -6)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -6)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -6)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -2)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 2)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 6)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 10)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -26)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -30)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -34)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -38)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -42)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -42)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -42)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -46)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -46)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -50)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -54)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -58)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -58)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -58)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -58)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -58)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -58)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -54)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -50)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -50)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -50)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -46)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -46)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -46)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -46)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -46)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -26)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -22)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -18)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -14)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -10)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -10)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -10)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -10)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -10)
|
||||
|
||||
[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -6)
|
||||
|
||||
[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -2)
|
||||
|
||||
[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 2)
|
||||
|
||||
[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 6)
|
||||
|
||||
[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -46)
|
||||
|
||||
[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -46)
|
||||
|
||||
[node name="Corridor_70" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_70" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -46)
|
||||
|
||||
[node name="Corridor_71" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_71" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -46)
|
||||
|
||||
[node name="Corridor_72" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_72" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -46)
|
||||
|
||||
[node name="Corridor_73" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_73" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 30)
|
||||
|
||||
[node name="Corridor_74" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_74" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 30)
|
||||
|
||||
[node name="Corridor_75" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_75" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 30)
|
||||
|
||||
[node name="Corridor_76" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_76" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 30)
|
||||
|
||||
[node name="Corridor_77" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_77" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 30)
|
||||
|
||||
[node name="Corridor_78" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_78" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 34)
|
||||
|
||||
[node name="Corridor_79" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_79" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 38)
|
||||
|
||||
[node name="Corridor_80" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_80" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 42)
|
||||
|
||||
[node name="Corridor_81" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_81" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 42)
|
||||
|
||||
[node name="Corridor_82" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_82" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 42)
|
||||
|
||||
[node name="Corridor_83" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_83" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 42)
|
||||
|
||||
[node name="Corridor_84" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_84" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 42)
|
||||
|
||||
[node name="Corridor_85" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_85" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 42)
|
||||
|
||||
[node name="Corridor_86" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qjouh")]
|
||||
[node name="Corridor_86" parent="NavigationRegion3D" instance=ExtResource("7_qjouh")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 46)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://cikq7vuorlpbl"]
|
||||
[gd_scene load_steps=17 format=3 uid="uid://cikq7vuorlpbl"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_8amoj"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_p7nwd"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_te0rp"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_i5hjj"]
|
||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_katpr"]
|
||||
@@ -35,209 +34,198 @@ script = ExtResource("1_8amoj")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_katpr")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_p7nwd")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_te0rp"), ExtResource("4_i5hjj"), ExtResource("5_katpr"), ExtResource("6_8pmtc"), ExtResource("7_5wyu4"), ExtResource("8_36gcj"), ExtResource("9_gn1yf"), ExtResource("10_8amoj")])
|
||||
corridor_room_scene = ExtResource("10_he2ag")
|
||||
dungeon_size = Vector3i(30, 1, 30)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="BasinRoom_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_i5hjj")]
|
||||
[node name="BasinRoom_0" parent="NavigationRegion3D" instance=ExtResource("4_i5hjj")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 32)
|
||||
|
||||
[node name="Pit Room A_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_gn1yf")]
|
||||
[node name="Pit Room A_1" parent="NavigationRegion3D" instance=ExtResource("9_gn1yf")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 2, 0, 42)
|
||||
|
||||
[node name="Water Room_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_5wyu4")]
|
||||
[node name="Water Room_2" parent="NavigationRegion3D" instance=ExtResource("7_5wyu4")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 12, 0, -14)
|
||||
|
||||
[node name="Balcony Room A_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_katpr")]
|
||||
[node name="Balcony Room A_3" parent="NavigationRegion3D" instance=ExtResource("5_katpr")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -32, 0, -30)
|
||||
|
||||
[node name="Antechamber A_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_te0rp")]
|
||||
[node name="Antechamber A_4" parent="NavigationRegion3D" instance=ExtResource("3_te0rp")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 44, 0, -38)
|
||||
|
||||
[node name="Column Room_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_8pmtc")]
|
||||
[node name="Column Room_5" parent="NavigationRegion3D" instance=ExtResource("6_8pmtc")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 46, 0, 24)
|
||||
|
||||
[node name="Floor Exit A_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_8amoj")]
|
||||
[node name="Floor Exit A_6" parent="NavigationRegion3D" instance=ExtResource("10_8amoj")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 14, 0, -42)
|
||||
|
||||
[node name="Statue Room_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_36gcj")]
|
||||
[node name="Statue Room_7" parent="NavigationRegion3D" instance=ExtResource("8_36gcj")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -20, 0, 8)
|
||||
|
||||
[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_8" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 22)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 22)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 22)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 22)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 22)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 26)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 30)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 34)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 38)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 42)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 22)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 18)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 14)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 10)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 6)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 2)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -30)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -30)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -30)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -30)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -30)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -34)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -38)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -42)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -46)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -50)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -50)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -50)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -50)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -50)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -50)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -30)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -30)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -30)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -30)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -34)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -38)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -42)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -14)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -10)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -6)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -2)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -2)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -2)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -34)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -38)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -42)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -26)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -22)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -18)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -14)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -10)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -6)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -6)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_he2ag")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("10_he2ag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -2)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
collision_mask = 2147483648
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://t7cac7801bnk"]
|
||||
[gd_scene load_steps=18 format=3 uid="uid://t7cac7801bnk"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_8l7r7"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_ksplq"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_b3rou"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_duhq4"]
|
||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_ut4ij"]
|
||||
@@ -36,293 +35,282 @@ script = ExtResource("1_8l7r7")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_duhq4")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_ksplq")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_b3rou"), ExtResource("4_duhq4"), ExtResource("5_ut4ij"), ExtResource("6_lposy"), ExtResource("7_mb8sd"), ExtResource("8_573ke"), ExtResource("9_puq45"), ExtResource("10_ksplq")])
|
||||
corridor_room_scene = ExtResource("10_slkpn")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_b3rou")]
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D" instance=ExtResource("3_b3rou")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -12, 0, 82)
|
||||
|
||||
[node name="Balcony Room A_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_ut4ij")]
|
||||
[node name="Balcony Room A_1" parent="NavigationRegion3D" instance=ExtResource("5_ut4ij")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -32, 0, -18)
|
||||
|
||||
[node name="BasinRoom_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_duhq4")]
|
||||
[node name="BasinRoom_2" parent="NavigationRegion3D" instance=ExtResource("4_duhq4")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -2, 0, -96)
|
||||
|
||||
[node name="Floor Exit A_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_ksplq")]
|
||||
[node name="Floor Exit A_3" parent="NavigationRegion3D" instance=ExtResource("10_ksplq")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -66, 0, 66)
|
||||
|
||||
[node name="Water Room_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_mb8sd")]
|
||||
[node name="Water Room_4" parent="NavigationRegion3D" instance=ExtResource("7_mb8sd")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -8, 0, -50)
|
||||
|
||||
[node name="Statue Room_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_573ke")]
|
||||
[node name="Statue Room_5" parent="NavigationRegion3D" instance=ExtResource("8_573ke")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 28, 0, -24)
|
||||
|
||||
[node name="Pit Room A_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_puq45")]
|
||||
[node name="Pit Room A_6" parent="NavigationRegion3D" instance=ExtResource("9_puq45")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -74, 0, 18)
|
||||
|
||||
[node name="Column Room_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_lposy")]
|
||||
[node name="Column Room_7" parent="NavigationRegion3D" instance=ExtResource("6_lposy")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -80, 0, -58)
|
||||
|
||||
[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_8" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 78)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 74)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 70)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 66)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 62)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 58)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 54)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 50)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 46)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 42)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 38)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 34)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 30)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 26)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 22)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 18)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 14)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 10)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 6)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 2)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 2)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 2)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 2)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -38)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -42)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -46)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -50)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -66)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -70)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -74)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -78)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -82)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -86)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -86)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -86)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 6)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 10)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 14)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 14)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 18)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 18)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 18)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, 18)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 18)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, 38)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, 42)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, 46)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, 50)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, 54)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78, 0, 54)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -82, 0, 54)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -86, 0, 54)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -86, 0, 58)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -86, 0, 62)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -86, 0, 66)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -34)
|
||||
|
||||
[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -34)
|
||||
|
||||
[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -34)
|
||||
|
||||
[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -34)
|
||||
|
||||
[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -34)
|
||||
|
||||
[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -30)
|
||||
|
||||
[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -26)
|
||||
|
||||
[node name="Corridor_70" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_70" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -18)
|
||||
|
||||
[node name="Corridor_71" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_71" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -18)
|
||||
|
||||
[node name="Corridor_72" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_72" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -18)
|
||||
|
||||
[node name="Corridor_73" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_73" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -18)
|
||||
|
||||
[node name="Corridor_74" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_74" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, -18)
|
||||
|
||||
[node name="Corridor_75" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_75" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, -18)
|
||||
|
||||
[node name="Corridor_76" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_76" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -18)
|
||||
|
||||
[node name="Corridor_77" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_77" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -14)
|
||||
|
||||
[node name="Corridor_78" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_78" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -10)
|
||||
|
||||
[node name="Corridor_79" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_79" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -6)
|
||||
|
||||
[node name="Corridor_80" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_80" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -2)
|
||||
|
||||
[node name="Corridor_81" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_81" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -22)
|
||||
|
||||
[node name="Corridor_82" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_82" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -26)
|
||||
|
||||
[node name="Corridor_83" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_83" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -30)
|
||||
|
||||
[node name="Corridor_84" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_84" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -34)
|
||||
|
||||
[node name="Corridor_85" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_85" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -38)
|
||||
|
||||
[node name="Corridor_86" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_86" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -42)
|
||||
|
||||
[node name="Corridor_87" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_87" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78, 0, -42)
|
||||
|
||||
[node name="Corridor_88" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_88" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -82, 0, -42)
|
||||
|
||||
[node name="Corridor_89" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_89" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -86, 0, -42)
|
||||
|
||||
[node name="Corridor_90" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_90" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -90, 0, -42)
|
||||
|
||||
[node name="Corridor_91" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_slkpn")]
|
||||
[node name="Corridor_91" parent="NavigationRegion3D" instance=ExtResource("10_slkpn")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -94, 0, -42)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
collision_mask = 2147483648
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://da107mywg18x1"]
|
||||
[gd_scene load_steps=18 format=3 uid="uid://da107mywg18x1"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_51vs0"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_ixj2e"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_rgrkc"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_ltey6"]
|
||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_xalbn"]
|
||||
@@ -36,329 +35,318 @@ script = ExtResource("1_51vs0")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_ltey6")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_ixj2e")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_rgrkc"), ExtResource("4_ltey6"), ExtResource("5_xalbn"), ExtResource("6_yfjr1"), ExtResource("7_wnhhx"), ExtResource("8_7s220"), ExtResource("9_twkiu"), ExtResource("10_ltey6"), ExtResource("10_51vs0")])
|
||||
corridor_room_scene = ExtResource("10_xh2mp")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="Statue Room_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_7s220")]
|
||||
[node name="Statue Room_0" parent="NavigationRegion3D" instance=ExtResource("8_7s220")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -20, 0, 20)
|
||||
|
||||
[node name="Pit Room A_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_twkiu")]
|
||||
[node name="Pit Room A_1" parent="NavigationRegion3D" instance=ExtResource("9_twkiu")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -2, 0, -10)
|
||||
|
||||
[node name="Antechamber A_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_rgrkc")]
|
||||
[node name="Antechamber A_2" parent="NavigationRegion3D" instance=ExtResource("3_rgrkc")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -92)
|
||||
|
||||
[node name="Floor Exit A_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_51vs0")]
|
||||
[node name="Floor Exit A_3" parent="NavigationRegion3D" instance=ExtResource("10_51vs0")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -102, 0, -34)
|
||||
|
||||
[node name="Seshat\'s Room_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_ltey6")]
|
||||
[node name="Seshat\'s Room_4" parent="NavigationRegion3D" instance=ExtResource("10_ltey6")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -58)
|
||||
|
||||
[node name="Column Room_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_yfjr1")]
|
||||
[node name="Column Room_5" parent="NavigationRegion3D" instance=ExtResource("6_yfjr1")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -46, 0, 52)
|
||||
|
||||
[node name="BasinRoom_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_ltey6")]
|
||||
[node name="BasinRoom_6" parent="NavigationRegion3D" instance=ExtResource("4_ltey6")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 64, 0, 18)
|
||||
|
||||
[node name="Water Room_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_wnhhx")]
|
||||
[node name="Water Room_7" parent="NavigationRegion3D" instance=ExtResource("7_wnhhx")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 52)
|
||||
|
||||
[node name="Balcony Room A_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_xalbn")]
|
||||
[node name="Balcony Room A_8" parent="NavigationRegion3D" instance=ExtResource("5_xalbn")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 16, 0, 98)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 10)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 10)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 6)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 2)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -2)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -6)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -10)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -30)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -34)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -38)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -42)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -46)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -50)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -54)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -58)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -62)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -66)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -70)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -70)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -70)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -74)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -78)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -78)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -82)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -82)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -82)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -82)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -82)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -82)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -82)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -10)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -10)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -10)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -10)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -10)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -10)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -10)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -10)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -10)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -10)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, -10)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, -10)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -10)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, -14)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78, 0, -14)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -82, 0, -14)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -86, 0, -14)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -90, 0, -14)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -94, 0, -14)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -98, 0, -14)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -102, 0, -14)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -58)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -58)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -58)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -58)
|
||||
|
||||
[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 22)
|
||||
|
||||
[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 26)
|
||||
|
||||
[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 30)
|
||||
|
||||
[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 34)
|
||||
|
||||
[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 38)
|
||||
|
||||
[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 38)
|
||||
|
||||
[node name="Corridor_70" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_70" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 38)
|
||||
|
||||
[node name="Corridor_71" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_71" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 38)
|
||||
|
||||
[node name="Corridor_72" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_72" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 38)
|
||||
|
||||
[node name="Corridor_73" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_73" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 38)
|
||||
|
||||
[node name="Corridor_74" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_74" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 38)
|
||||
|
||||
[node name="Corridor_75" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_75" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 38)
|
||||
|
||||
[node name="Corridor_76" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_76" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 38)
|
||||
|
||||
[node name="Corridor_77" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_77" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 38)
|
||||
|
||||
[node name="Corridor_78" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_78" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 38)
|
||||
|
||||
[node name="Corridor_79" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_79" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 38)
|
||||
|
||||
[node name="Corridor_80" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_80" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 38)
|
||||
|
||||
[node name="Corridor_81" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_81" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 38)
|
||||
|
||||
[node name="Corridor_82" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_82" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 38)
|
||||
|
||||
[node name="Corridor_83" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_83" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 38)
|
||||
|
||||
[node name="Corridor_84" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_84" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 38)
|
||||
|
||||
[node name="Corridor_85" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_85" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 38)
|
||||
|
||||
[node name="Corridor_86" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_86" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 38)
|
||||
|
||||
[node name="Corridor_87" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_87" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 42)
|
||||
|
||||
[node name="Corridor_88" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_88" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 38)
|
||||
|
||||
[node name="Corridor_89" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_89" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 34)
|
||||
|
||||
[node name="Corridor_90" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_90" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 30)
|
||||
|
||||
[node name="Corridor_91" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_91" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 26)
|
||||
|
||||
[node name="Corridor_92" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_92" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 22)
|
||||
|
||||
[node name="Corridor_93" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_93" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 18)
|
||||
|
||||
[node name="Corridor_94" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_94" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 42)
|
||||
|
||||
[node name="Corridor_95" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_95" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 46)
|
||||
|
||||
[node name="Corridor_96" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_96" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 50)
|
||||
|
||||
[node name="Corridor_97" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_97" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 54)
|
||||
|
||||
[node name="Corridor_98" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_98" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 58)
|
||||
|
||||
[node name="Corridor_99" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_99" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 62)
|
||||
|
||||
[node name="Corridor_100" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_100" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 66)
|
||||
|
||||
[node name="Corridor_101" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_101" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 70)
|
||||
|
||||
[node name="Corridor_102" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_102" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 74)
|
||||
|
||||
[node name="Corridor_103" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xh2mp")]
|
||||
[node name="Corridor_103" parent="NavigationRegion3D" instance=ExtResource("10_xh2mp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 78)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
collision_mask = 2147483648
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://cgtqjgh1f5fqi"]
|
||||
[gd_scene load_steps=18 format=3 uid="uid://cgtqjgh1f5fqi"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_un5rc"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_purgj"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_67qnt"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_ogmgc"]
|
||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_fjqnq"]
|
||||
@@ -36,293 +35,282 @@ script = ExtResource("1_un5rc")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_fjqnq")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_purgj")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_67qnt"), ExtResource("4_ogmgc"), ExtResource("5_fjqnq"), ExtResource("6_bji1g"), ExtResource("7_sqvag"), ExtResource("8_c5i81"), ExtResource("9_lo82o"), ExtResource("10_fjqnq")])
|
||||
corridor_room_scene = ExtResource("10_xvcp8")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="Balcony Room A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_fjqnq")]
|
||||
[node name="Balcony Room A_0" parent="NavigationRegion3D" instance=ExtResource("5_fjqnq")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -72, 0, 54)
|
||||
|
||||
[node name="Antechamber A_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_67qnt")]
|
||||
[node name="Antechamber A_1" parent="NavigationRegion3D" instance=ExtResource("3_67qnt")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 60)
|
||||
|
||||
[node name="Pit Room A_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_lo82o")]
|
||||
[node name="Pit Room A_2" parent="NavigationRegion3D" instance=ExtResource("9_lo82o")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 46, 0, -26)
|
||||
|
||||
[node name="Statue Room_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_c5i81")]
|
||||
[node name="Statue Room_3" parent="NavigationRegion3D" instance=ExtResource("8_c5i81")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -28, 0, 88)
|
||||
|
||||
[node name="Floor Exit A_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_fjqnq")]
|
||||
[node name="Floor Exit A_4" parent="NavigationRegion3D" instance=ExtResource("10_fjqnq")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 30, 0, 34)
|
||||
|
||||
[node name="Column Room_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_bji1g")]
|
||||
[node name="Column Room_5" parent="NavigationRegion3D" instance=ExtResource("6_bji1g")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 4, 0, 2)
|
||||
|
||||
[node name="BasinRoom_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_ogmgc")]
|
||||
[node name="BasinRoom_6" parent="NavigationRegion3D" instance=ExtResource("4_ogmgc")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -88, 0, -10)
|
||||
|
||||
[node name="Water Room_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_sqvag")]
|
||||
[node name="Water Room_7" parent="NavigationRegion3D" instance=ExtResource("7_sqvag")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -68)
|
||||
|
||||
[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_8" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 54)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, 54)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 54)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 54)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 54)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 54)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 54)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 54)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 54)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 54)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 54)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 54)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 54)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 54)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 54)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 54)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 54)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 54)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 54)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 54)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 54)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 54)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 54)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 54)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 54)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 50)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 50)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 50)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 50)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 50)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 46)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 42)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 38)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 34)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 30)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 26)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 22)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 18)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 14)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 10)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 6)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 2)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -2)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -6)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 58)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 62)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 66)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 70)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 74)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 78)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 82)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 86)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 14)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 14)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 14)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 14)
|
||||
|
||||
[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -26)
|
||||
|
||||
[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -26)
|
||||
|
||||
[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -26)
|
||||
|
||||
[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -22)
|
||||
|
||||
[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -18)
|
||||
|
||||
[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -14)
|
||||
|
||||
[node name="Corridor_70" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_70" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 2)
|
||||
|
||||
[node name="Corridor_71" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_71" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 2)
|
||||
|
||||
[node name="Corridor_72" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_72" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 2)
|
||||
|
||||
[node name="Corridor_73" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_73" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 2)
|
||||
|
||||
[node name="Corridor_74" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_74" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 2)
|
||||
|
||||
[node name="Corridor_75" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_75" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 2)
|
||||
|
||||
[node name="Corridor_76" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_76" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 2)
|
||||
|
||||
[node name="Corridor_77" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_77" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, 2)
|
||||
|
||||
[node name="Corridor_78" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_78" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 2)
|
||||
|
||||
[node name="Corridor_79" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_79" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, 2)
|
||||
|
||||
[node name="Corridor_80" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_80" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 2)
|
||||
|
||||
[node name="Corridor_81" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_81" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, 2)
|
||||
|
||||
[node name="Corridor_82" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_82" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, 2)
|
||||
|
||||
[node name="Corridor_83" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_83" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -74, 0, 2)
|
||||
|
||||
[node name="Corridor_84" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_84" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78, 0, 2)
|
||||
|
||||
[node name="Corridor_85" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_85" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78, 0, -2)
|
||||
|
||||
[node name="Corridor_86" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_86" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78, 0, -6)
|
||||
|
||||
[node name="Corridor_87" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_87" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78, 0, -10)
|
||||
|
||||
[node name="Corridor_88" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_88" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -30)
|
||||
|
||||
[node name="Corridor_89" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_89" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -34)
|
||||
|
||||
[node name="Corridor_90" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_90" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -38)
|
||||
|
||||
[node name="Corridor_91" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_xvcp8")]
|
||||
[node name="Corridor_91" parent="NavigationRegion3D" instance=ExtResource("10_xvcp8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -42)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
collision_mask = 2147483648
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://dg20ovvj2m2lp"]
|
||||
[gd_scene load_steps=17 format=3 uid="uid://dg20ovvj2m2lp"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_qs20c"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_6ps7u"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_pn3nc"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_esh22"]
|
||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_mir7f"]
|
||||
@@ -35,356 +34,345 @@ script = ExtResource("1_qs20c")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_esh22")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_6ps7u")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_pn3nc"), ExtResource("4_esh22"), ExtResource("5_mir7f"), ExtResource("6_1elux"), ExtResource("7_c68jx"), ExtResource("8_3lecr"), ExtResource("9_dtrr3"), ExtResource("10_esh22")])
|
||||
corridor_room_scene = ExtResource("10_vtwmp")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_pn3nc")]
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D" instance=ExtResource("3_pn3nc")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 58, 0, -24)
|
||||
|
||||
[node name="Water Room_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_c68jx")]
|
||||
[node name="Water Room_1" parent="NavigationRegion3D" instance=ExtResource("7_c68jx")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -42, 0, -32)
|
||||
|
||||
[node name="Column Room_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_1elux")]
|
||||
[node name="Column Room_2" parent="NavigationRegion3D" instance=ExtResource("6_1elux")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 68, 0, 70)
|
||||
|
||||
[node name="Floor Exit A_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_esh22")]
|
||||
[node name="Floor Exit A_3" parent="NavigationRegion3D" instance=ExtResource("10_esh22")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -34, 0, 94)
|
||||
|
||||
[node name="Balcony Room A_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_mir7f")]
|
||||
[node name="Balcony Room A_4" parent="NavigationRegion3D" instance=ExtResource("5_mir7f")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 104, 0, 102)
|
||||
|
||||
[node name="Pit Room A_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_dtrr3")]
|
||||
[node name="Pit Room A_5" parent="NavigationRegion3D" instance=ExtResource("9_dtrr3")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -58, 0, 62)
|
||||
|
||||
[node name="BasinRoom_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_esh22")]
|
||||
[node name="BasinRoom_6" parent="NavigationRegion3D" instance=ExtResource("4_esh22")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 76, 0, -18)
|
||||
|
||||
[node name="Statue Room_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_3lecr")]
|
||||
[node name="Statue Room_7" parent="NavigationRegion3D" instance=ExtResource("8_3lecr")]
|
||||
transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -4, 0, -40)
|
||||
|
||||
[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_8" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, -14)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -14)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -14)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -14)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -14)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -14)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -14)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -14)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -14)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -14)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -14)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -14)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -14)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -14)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -14)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -14)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -14)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -14)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -14)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -18)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -18)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -18)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -10)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -6)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -2)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 2)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 6)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 10)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 14)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 18)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 22)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 26)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 30)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 34)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 38)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 42)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 46)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 50)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 54)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 58)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 62)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 66)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 70)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 62)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 62)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 62)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 62)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 62)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 62)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 62)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 62)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 62)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 62)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 62)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 62)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 62)
|
||||
|
||||
[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 62)
|
||||
|
||||
[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 62)
|
||||
|
||||
[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 62)
|
||||
|
||||
[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 62)
|
||||
|
||||
[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 62)
|
||||
|
||||
[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 62)
|
||||
|
||||
[node name="Corridor_70" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_70" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 62)
|
||||
|
||||
[node name="Corridor_71" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_71" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, 82)
|
||||
|
||||
[node name="Corridor_72" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_72" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 82)
|
||||
|
||||
[node name="Corridor_73" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_73" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 86)
|
||||
|
||||
[node name="Corridor_74" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_74" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 90)
|
||||
|
||||
[node name="Corridor_75" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_75" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 94)
|
||||
|
||||
[node name="Corridor_76" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_76" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 54)
|
||||
|
||||
[node name="Corridor_77" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_77" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 54)
|
||||
|
||||
[node name="Corridor_78" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_78" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 54)
|
||||
|
||||
[node name="Corridor_79" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_79" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 54)
|
||||
|
||||
[node name="Corridor_80" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_80" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 58)
|
||||
|
||||
[node name="Corridor_81" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_81" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 62)
|
||||
|
||||
[node name="Corridor_82" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_82" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 66)
|
||||
|
||||
[node name="Corridor_83" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_83" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 70)
|
||||
|
||||
[node name="Corridor_84" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_84" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 74)
|
||||
|
||||
[node name="Corridor_85" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_85" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 78)
|
||||
|
||||
[node name="Corridor_86" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_86" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 82)
|
||||
|
||||
[node name="Corridor_87" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_87" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 82)
|
||||
|
||||
[node name="Corridor_88" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_88" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 82)
|
||||
|
||||
[node name="Corridor_89" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_89" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 54)
|
||||
|
||||
[node name="Corridor_90" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_90" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 54)
|
||||
|
||||
[node name="Corridor_91" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_91" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 54)
|
||||
|
||||
[node name="Corridor_92" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_92" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 54)
|
||||
|
||||
[node name="Corridor_93" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_93" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 54)
|
||||
|
||||
[node name="Corridor_94" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_94" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 54)
|
||||
|
||||
[node name="Corridor_95" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_95" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 54)
|
||||
|
||||
[node name="Corridor_96" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_96" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 54)
|
||||
|
||||
[node name="Corridor_97" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_97" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 54)
|
||||
|
||||
[node name="Corridor_98" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_98" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, -34)
|
||||
|
||||
[node name="Corridor_99" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_99" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, -34)
|
||||
|
||||
[node name="Corridor_100" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_100" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, -34)
|
||||
|
||||
[node name="Corridor_101" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_101" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, -30)
|
||||
|
||||
[node name="Corridor_102" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_102" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, -30)
|
||||
|
||||
[node name="Corridor_103" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_103" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, -30)
|
||||
|
||||
[node name="Corridor_104" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_104" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, -30)
|
||||
|
||||
[node name="Corridor_105" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_105" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, -30)
|
||||
|
||||
[node name="Corridor_106" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_106" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, -26)
|
||||
|
||||
[node name="Corridor_107" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_107" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, -22)
|
||||
|
||||
[node name="Corridor_108" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_108" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, -18)
|
||||
|
||||
[node name="Corridor_109" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_109" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -18)
|
||||
|
||||
[node name="Corridor_110" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_110" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -22)
|
||||
|
||||
[node name="Corridor_111" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_111" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -26)
|
||||
|
||||
[node name="Corridor_112" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_vtwmp")]
|
||||
[node name="Corridor_112" parent="NavigationRegion3D" instance=ExtResource("10_vtwmp")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -30)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
|
||||
[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"]
|
||||
collision_layer = 2147483648
|
||||
collision_mask = 2147483648
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://b5jk743ng6fqg"]
|
||||
[gd_scene load_steps=18 format=3 uid="uid://b5jk743ng6fqg"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ah6eb"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_2l5nt"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_f55jb"]
|
||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_iljqd"]
|
||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_2admg"]
|
||||
@@ -34,395 +33,384 @@ script = ExtResource("1_ah6eb")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_b81ow")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_2l5nt")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_f55jb"), ExtResource("4_iljqd"), ExtResource("5_2admg"), ExtResource("6_fuh3g"), ExtResource("7_lk05i"), ExtResource("8_b81ow"), ExtResource("9_tl40f"), ExtResource("10_iljqd"), ExtResource("11_2admg")])
|
||||
corridor_room_scene = ExtResource("10_glh5y")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_f55jb")]
|
||||
[node name="Antechamber A_0" parent="NavigationRegion3D" instance=ExtResource("3_f55jb")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -20)
|
||||
|
||||
[node name="Statue Room_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_b81ow")]
|
||||
[node name="Statue Room_1" parent="NavigationRegion3D" instance=ExtResource("8_b81ow")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 104, 0, 84)
|
||||
|
||||
[node name="BasinRoom_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_iljqd")]
|
||||
[node name="BasinRoom_2" parent="NavigationRegion3D" instance=ExtResource("4_iljqd")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -52, 0, 2)
|
||||
|
||||
[node name="GesthemiisRoom_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_iljqd")]
|
||||
[node name="GesthemiisRoom_3" parent="NavigationRegion3D" instance=ExtResource("10_iljqd")]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 90, 0, 50)
|
||||
|
||||
[node name="Water Room_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_lk05i")]
|
||||
[node name="Water Room_4" parent="NavigationRegion3D" instance=ExtResource("7_lk05i")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, 92)
|
||||
|
||||
[node name="Pit Room A_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_tl40f")]
|
||||
[node name="Pit Room A_5" parent="NavigationRegion3D" instance=ExtResource("9_tl40f")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 62, 0, 82)
|
||||
|
||||
[node name="Column Room_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_fuh3g")]
|
||||
[node name="Column Room_6" parent="NavigationRegion3D" instance=ExtResource("6_fuh3g")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 48, 0, 38)
|
||||
|
||||
[node name="Floor Exit A_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_2admg")]
|
||||
[node name="Floor Exit A_7" parent="NavigationRegion3D" instance=ExtResource("11_2admg")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 78, 0, -90)
|
||||
|
||||
[node name="Balcony Room A_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_2admg")]
|
||||
[node name="Balcony Room A_8" parent="NavigationRegion3D" instance=ExtResource("5_2admg")]
|
||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 26, 0, 104)
|
||||
|
||||
[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_9" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -10)
|
||||
|
||||
[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_10" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -6)
|
||||
|
||||
[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_11" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, -2)
|
||||
|
||||
[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_12" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 2)
|
||||
|
||||
[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_13" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 6)
|
||||
|
||||
[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_14" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 10)
|
||||
|
||||
[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_15" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 14)
|
||||
|
||||
[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_16" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 18)
|
||||
|
||||
[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_17" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 22)
|
||||
|
||||
[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_18" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 22)
|
||||
|
||||
[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_19" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 22)
|
||||
|
||||
[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_20" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 22)
|
||||
|
||||
[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_21" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 22)
|
||||
|
||||
[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_22" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 22)
|
||||
|
||||
[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_23" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 54)
|
||||
|
||||
[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_24" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 58)
|
||||
|
||||
[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_25" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 62)
|
||||
|
||||
[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_26" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 82)
|
||||
|
||||
[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_27" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 82)
|
||||
|
||||
[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_28" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 82)
|
||||
|
||||
[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_29" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 82)
|
||||
|
||||
[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_30" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 86)
|
||||
|
||||
[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_31" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, -10)
|
||||
|
||||
[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_32" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, -10)
|
||||
|
||||
[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_33" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -10)
|
||||
|
||||
[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_34" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -10)
|
||||
|
||||
[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_35" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -10)
|
||||
|
||||
[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_36" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -10)
|
||||
|
||||
[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_37" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -10)
|
||||
|
||||
[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_38" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -10)
|
||||
|
||||
[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_39" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -10)
|
||||
|
||||
[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_40" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -10)
|
||||
|
||||
[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_41" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -10)
|
||||
|
||||
[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_42" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -10)
|
||||
|
||||
[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_43" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -10)
|
||||
|
||||
[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_44" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -10)
|
||||
|
||||
[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_45" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -10)
|
||||
|
||||
[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_46" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -10)
|
||||
|
||||
[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_47" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -10)
|
||||
|
||||
[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_48" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -10)
|
||||
|
||||
[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_49" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -10)
|
||||
|
||||
[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_50" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -10)
|
||||
|
||||
[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_51" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -10)
|
||||
|
||||
[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_52" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -10)
|
||||
|
||||
[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_53" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -10)
|
||||
|
||||
[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_54" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -10)
|
||||
|
||||
[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_55" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -10)
|
||||
|
||||
[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_56" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -10)
|
||||
|
||||
[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_57" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -6)
|
||||
|
||||
[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_58" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -2)
|
||||
|
||||
[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_59" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 2)
|
||||
|
||||
[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_60" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 22)
|
||||
|
||||
[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_61" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 22)
|
||||
|
||||
[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_62" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 22)
|
||||
|
||||
[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_63" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 26)
|
||||
|
||||
[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_64" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 26)
|
||||
|
||||
[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_65" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 30)
|
||||
|
||||
[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_66" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 30)
|
||||
|
||||
[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_67" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 30)
|
||||
|
||||
[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_68" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 82)
|
||||
|
||||
[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_69" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 82)
|
||||
|
||||
[node name="Corridor_70" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_70" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 82)
|
||||
|
||||
[node name="Corridor_71" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_71" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 82)
|
||||
|
||||
[node name="Corridor_72" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_72" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 82)
|
||||
|
||||
[node name="Corridor_73" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_73" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 82)
|
||||
|
||||
[node name="Corridor_74" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_74" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 82)
|
||||
|
||||
[node name="Corridor_75" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_75" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 82)
|
||||
|
||||
[node name="Corridor_76" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_76" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 82)
|
||||
|
||||
[node name="Corridor_77" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_77" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 82)
|
||||
|
||||
[node name="Corridor_78" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_78" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 82)
|
||||
|
||||
[node name="Corridor_79" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_79" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 82)
|
||||
|
||||
[node name="Corridor_80" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_80" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 82)
|
||||
|
||||
[node name="Corridor_81" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_81" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 82)
|
||||
|
||||
[node name="Corridor_82" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_82" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 82)
|
||||
|
||||
[node name="Corridor_83" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_83" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 82)
|
||||
|
||||
[node name="Corridor_84" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_84" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 82)
|
||||
|
||||
[node name="Corridor_85" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_85" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 82)
|
||||
|
||||
[node name="Corridor_86" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_86" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 82)
|
||||
|
||||
[node name="Corridor_87" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_87" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 82)
|
||||
|
||||
[node name="Corridor_88" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_88" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 82)
|
||||
|
||||
[node name="Corridor_89" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_89" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 82)
|
||||
|
||||
[node name="Corridor_90" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_90" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 82)
|
||||
|
||||
[node name="Corridor_91" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_91" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, 82)
|
||||
|
||||
[node name="Corridor_92" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_92" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -30)
|
||||
|
||||
[node name="Corridor_93" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_93" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -34)
|
||||
|
||||
[node name="Corridor_94" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_94" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -38)
|
||||
|
||||
[node name="Corridor_95" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_95" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -42)
|
||||
|
||||
[node name="Corridor_96" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_96" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -46)
|
||||
|
||||
[node name="Corridor_97" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_97" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -50)
|
||||
|
||||
[node name="Corridor_98" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_98" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -54)
|
||||
|
||||
[node name="Corridor_99" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_99" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -58)
|
||||
|
||||
[node name="Corridor_100" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_100" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -62)
|
||||
|
||||
[node name="Corridor_101" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_101" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -66)
|
||||
|
||||
[node name="Corridor_102" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_102" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -70)
|
||||
|
||||
[node name="Corridor_103" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_103" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -74)
|
||||
|
||||
[node name="Corridor_104" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_104" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -78)
|
||||
|
||||
[node name="Corridor_105" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_105" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -82)
|
||||
|
||||
[node name="Corridor_106" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_106" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, -86)
|
||||
|
||||
[node name="Corridor_107" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_107" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, -86)
|
||||
|
||||
[node name="Corridor_108" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_108" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, -90)
|
||||
|
||||
[node name="Corridor_109" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_109" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, -94)
|
||||
|
||||
[node name="Corridor_110" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_110" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, -98)
|
||||
|
||||
[node name="Corridor_111" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_111" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, -102)
|
||||
|
||||
[node name="Corridor_112" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_112" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, -102)
|
||||
|
||||
[node name="Corridor_113" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_113" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, -106)
|
||||
|
||||
[node name="Corridor_114" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_114" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, -110)
|
||||
|
||||
[node name="Corridor_115" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_115" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, -110)
|
||||
|
||||
[node name="Corridor_116" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_116" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, -110)
|
||||
|
||||
[node name="Corridor_117" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_117" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, -110)
|
||||
|
||||
[node name="Corridor_118" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_118" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, -110)
|
||||
|
||||
[node name="Corridor_119" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_119" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, -110)
|
||||
|
||||
[node name="Corridor_120" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_120" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 86)
|
||||
|
||||
[node name="Corridor_121" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_121" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 90)
|
||||
|
||||
[node name="Corridor_122" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_122" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 94)
|
||||
|
||||
[node name="Corridor_123" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_123" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 98)
|
||||
|
||||
[node name="Corridor_124" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_124" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 102)
|
||||
|
||||
[node name="Corridor_125" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_glh5y")]
|
||||
[node name="Corridor_125" parent="NavigationRegion3D" instance=ExtResource("10_glh5y")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 106)
|
||||
|
||||
[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"]
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("11_xxd5b")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("15_f55jb"), ExtResource("12_mhyau"), ExtResource("16_2admg"), ExtResource("17_fuh3g")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://dl2x3l7a3an65"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://dl2x3l7a3an65"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_k525w"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_bw315"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_bw315"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_8e7p7"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_deo6i"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_x1lv4"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_274rn"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_fj5sv"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_famp5"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_5y5fx"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_8e7p7"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="11_jk7yl"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_y24bo"]
|
||||
[ext_resource type="PackedScene" uid="uid://dlw5cvutvypxn" path="res://src/enemy/enemy_types/06. chariot/Chariot.tscn" id="13_aj7yr"]
|
||||
[ext_resource type="PackedScene" uid="uid://fosk3kt7vp8d" path="res://src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn" id="15_8e7p7"]
|
||||
@@ -29,15 +18,6 @@ script = ExtResource("1_k525w")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_bw315")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_bw315"), ExtResource("4_8e7p7"), ExtResource("5_deo6i"), ExtResource("6_x1lv4"), ExtResource("7_274rn"), ExtResource("8_fj5sv"), ExtResource("9_famp5"), ExtResource("10_5y5fx"), ExtResource("11_8e7p7")])
|
||||
corridor_room_scene = ExtResource("11_jk7yl")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("11_y24bo")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("13_aj7yr"), ExtResource("15_8e7p7"), ExtResource("15_bw315")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://drvjw06wbi2qh"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://drvjw06wbi2qh"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_xpfig"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_m28m3"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_53cm1"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_ffc3h"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_jc51p"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_rtv5v"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_jro0u"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_b7mkw"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_4qv3u"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_5fprq"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_nemst"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_1rgka"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_jwrcb"]
|
||||
[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/07. chinthe/Chinthe.tscn" id="14_edmor"]
|
||||
[ext_resource type="PackedScene" uid="uid://fosk3kt7vp8d" path="res://src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn" id="14_xpfig"]
|
||||
@@ -29,15 +18,6 @@ script = ExtResource("1_xpfig")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_m28m3")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_53cm1"), ExtResource("4_ffc3h"), ExtResource("5_jc51p"), ExtResource("6_rtv5v"), ExtResource("7_jro0u"), ExtResource("8_b7mkw"), ExtResource("9_4qv3u"), ExtResource("10_5fprq"), ExtResource("11_nemst")])
|
||||
corridor_room_scene = ExtResource("12_1rgka")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_jwrcb")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_xpfig"), ExtResource("14_edmor"), ExtResource("16_m28m3")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://fellg2owwe64"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://fellg2owwe64"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_cmrxb"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_bb5ek"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_ak4no"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_sfr88"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_by6es"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_xkoxe"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_63dun"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_btunt"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_vonag"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_yo5mh"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_mwwyc"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_hnpqo"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_bm34w"]
|
||||
[ext_resource type="PackedScene" uid="uid://fosk3kt7vp8d" path="res://src/enemy/enemy_types/08a. Ambassador/Ambassador.tscn" id="14_cmrxb"]
|
||||
[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/07. chinthe/Chinthe.tscn" id="15_bb5ek"]
|
||||
@@ -29,15 +18,6 @@ script = ExtResource("1_cmrxb")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_bb5ek")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_ak4no"), ExtResource("4_sfr88"), ExtResource("5_by6es"), ExtResource("6_xkoxe"), ExtResource("7_63dun"), ExtResource("8_btunt"), ExtResource("9_vonag"), ExtResource("10_yo5mh"), ExtResource("11_mwwyc")])
|
||||
corridor_room_scene = ExtResource("12_hnpqo")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_bm34w")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_cmrxb"), ExtResource("15_bb5ek"), ExtResource("16_ak4no")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://vhqwff12y7wn"]
|
||||
[gd_scene load_steps=8 format=3 uid="uid://vhqwff12y7wn"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_qo66f"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_q127u"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_7km57"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_nrwsy"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_mh162"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_hs7sr"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_48ayb"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_j3q75"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_g0y0e"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_8jhvc"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_ng7ux"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_tkntm"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_8j25c"]
|
||||
[ext_resource type="PackedScene" uid="uid://c6tqt27ql8s35" path="res://src/enemy/enemy_types/07. chinthe/Chinthe.tscn" id="14_r4r1j"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="15_q127u"]
|
||||
@@ -30,15 +19,6 @@ script = ExtResource("1_qo66f")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_q127u")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_7km57"), ExtResource("4_nrwsy"), ExtResource("5_mh162"), ExtResource("6_hs7sr"), ExtResource("7_48ayb"), ExtResource("8_j3q75"), ExtResource("9_g0y0e"), ExtResource("10_8jhvc"), ExtResource("11_ng7ux")])
|
||||
corridor_room_scene = ExtResource("12_tkntm")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_8j25c")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_r4r1j"), ExtResource("15_q127u"), ExtResource("16_7km57"), ExtResource("17_nrwsy")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://h8tc1uohuqx2"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://h8tc1uohuqx2"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_i4yll"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_xtyir"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_cfhak"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_i1g1c"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_fqp0v"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_86r4l"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_mxaww"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_eti4c"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_3p6l1"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_rd0ko"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_t8tuf"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_f284e"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_hlb65"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="14_i4yll"]
|
||||
[ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="15_xtyir"]
|
||||
@@ -29,15 +18,6 @@ script = ExtResource("1_i4yll")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_xtyir")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_cfhak"), ExtResource("4_i1g1c"), ExtResource("5_fqp0v"), ExtResource("6_86r4l"), ExtResource("7_mxaww"), ExtResource("8_eti4c"), ExtResource("9_3p6l1"), ExtResource("10_rd0ko"), ExtResource("11_t8tuf")])
|
||||
corridor_room_scene = ExtResource("12_f284e")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_hlb65")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_i4yll"), ExtResource("15_xtyir"), ExtResource("16_cfhak")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://cyfp0p38w2yfr"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://cyfp0p38w2yfr"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_dg3fy"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_q8hlb"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_0utb0"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_jh7em"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_xrigs"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_r76p4"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_b414q"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_7gq57"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_kaga7"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_0r7u7"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_wurkp"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_qbngl"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_gg5wp"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8ewfgcjv60es" path="res://src/enemy/enemy_types/09. Agni/AgniDemon.tscn" id="14_dg3fy"]
|
||||
[ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="15_q8hlb"]
|
||||
@@ -29,15 +18,6 @@ script = ExtResource("1_dg3fy")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_q8hlb")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_0utb0"), ExtResource("4_jh7em"), ExtResource("5_xrigs"), ExtResource("6_r76p4"), ExtResource("7_b414q"), ExtResource("8_7gq57"), ExtResource("9_kaga7"), ExtResource("10_0r7u7"), ExtResource("11_wurkp")])
|
||||
corridor_room_scene = ExtResource("12_qbngl")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_gg5wp")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_dg3fy"), ExtResource("15_q8hlb"), ExtResource("16_0utb0")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://dnrbqkv438tjx"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://dnrbqkv438tjx"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_7fjdy"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_neo74"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_iqgo0"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_m0j7h"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_vfchv"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_dn13w"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_i6jge"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_kg1wb"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_f0vei"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_id8cu"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_0tado"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_wm2qn"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_f1owy"]
|
||||
[ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="14_7fjdy"]
|
||||
[ext_resource type="PackedScene" uid="uid://boqjebx7yuiqy" path="res://src/enemy/enemy_types/11. Palan/Palan.tscn" id="15_neo74"]
|
||||
@@ -29,15 +18,6 @@ script = ExtResource("1_7fjdy")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_neo74")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_iqgo0"), ExtResource("4_m0j7h"), ExtResource("5_vfchv"), ExtResource("6_dn13w"), ExtResource("7_i6jge"), ExtResource("8_kg1wb"), ExtResource("9_f0vei"), ExtResource("10_id8cu"), ExtResource("11_0tado")])
|
||||
corridor_room_scene = ExtResource("12_wm2qn")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_f1owy")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_7fjdy"), ExtResource("15_neo74"), ExtResource("16_iqgo0")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=18 format=3 uid="uid://cgoogenmugoti"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://cgoogenmugoti"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ksrny"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_a76ri"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_biant"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_ya360"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_7enj5"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_c5tc6"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_jcbwi"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_6fs7u"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_6ueav"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_ag0xh"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_380n2"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_tg7p8"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_avl22"]
|
||||
[ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="14_ksrny"]
|
||||
[ext_resource type="PackedScene" uid="uid://boqjebx7yuiqy" path="res://src/enemy/enemy_types/11. Palan/Palan.tscn" id="15_a76ri"]
|
||||
@@ -29,15 +18,6 @@ script = ExtResource("1_ksrny")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_a76ri")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_biant"), ExtResource("4_ya360"), ExtResource("5_7enj5"), ExtResource("6_c5tc6"), ExtResource("7_jcbwi"), ExtResource("8_6fs7u"), ExtResource("9_6ueav"), ExtResource("10_ag0xh"), ExtResource("11_380n2")])
|
||||
corridor_room_scene = ExtResource("12_tg7p8")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_avl22")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_ksrny"), ExtResource("15_a76ri"), ExtResource("16_biant")])
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
[gd_scene load_steps=19 format=3 uid="uid://33lvido1dkbu"]
|
||||
[gd_scene load_steps=8 format=3 uid="uid://33lvido1dkbu"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_8tkq2"]
|
||||
[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_m0atb"]
|
||||
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_blhib"]
|
||||
[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="4_rxmjy"]
|
||||
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="5_fnjfv"]
|
||||
[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="6_dpaem"]
|
||||
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="7_fp3ik"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="8_2od3c"]
|
||||
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="9_twdga"]
|
||||
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="10_2x4yi"]
|
||||
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="11_gnpgo"]
|
||||
[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="12_rgx5c"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="13_8mkl1"]
|
||||
[ext_resource type="PackedScene" uid="uid://cmvimr0pvsgqy" path="res://src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn" id="14_m0atb"]
|
||||
[ext_resource type="PackedScene" uid="uid://boqjebx7yuiqy" path="res://src/enemy/enemy_types/11. Palan/Palan.tscn" id="15_blhib"]
|
||||
@@ -30,15 +19,6 @@ script = ExtResource("1_8tkq2")
|
||||
unique_name_in_owner = true
|
||||
navigation_mesh = SubResource("NavigationMesh_gqi8w")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_m0atb")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_blhib"), ExtResource("4_rxmjy"), ExtResource("5_fnjfv"), ExtResource("6_dpaem"), ExtResource("7_fp3ik"), ExtResource("8_2od3c"), ExtResource("9_twdga"), ExtResource("10_2x4yi"), ExtResource("11_gnpgo")])
|
||||
corridor_room_scene = ExtResource("12_rgx5c")
|
||||
dungeon_size = Vector3i(60, 1, 60)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("13_8mkl1")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("14_m0atb"), ExtResource("15_blhib"), ExtResource("16_rxmjy"), ExtResource("17_fnjfv")])
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=58 format=4 uid="uid://dpec2lbt83dhe"]
|
||||
[gd_scene load_steps=56 format=4 uid="uid://dpec2lbt83dhe"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_ho6e8"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_phhs1"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_312b8"]
|
||||
[ext_resource type="Texture2D" uid="uid://ba5yl0syukqtx" path="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_WALL TILE 1.jpg" id="3_isaec"]
|
||||
[ext_resource type="Texture2D" uid="uid://vtnruibl68fq" path="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_FLOOR1.jpg" id="4_5vwwt"]
|
||||
[ext_resource type="Texture2D" uid="uid://b21vqw03xewaq" path="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png" id="5_4tpx2"]
|
||||
@@ -19,7 +18,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="17_jig7d"]
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="20_le1vp"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="21_8vpi3"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="21_m6pqv"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3hnk1"]
|
||||
resource_name = "Material.041"
|
||||
@@ -629,17 +627,12 @@ material = ExtResource("21_8vpi3")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Antechamber A" type="Node3D"]
|
||||
script = ExtResource("1_ho6e8")
|
||||
size_in_voxels = Vector3i(5, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("1_312b8")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Antechamber A" type="Node3D" parent="Model"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_phhs1")
|
||||
|
||||
[node name="ROOM" type="MeshInstance3D" parent="Model/Antechamber A"]
|
||||
transform = Transform3D(0.287429, 0, 0, 0, 0.287429, 0, 0, 0, 0.287429, 0.04755, 2.0061, 0.0209513)
|
||||
@@ -746,9 +739,6 @@ operation = 2
|
||||
size = Vector3(4, 4, 2)
|
||||
material = SubResource("StandardMaterial3D_cnaww")
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("21_m6pqv")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
[gd_scene load_steps=84 format=4 uid="uid://i781lbf2wb22"]
|
||||
[gd_scene load_steps=82 format=4 uid="uid://i781lbf2wb22"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_owolg"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_58osi"]
|
||||
[ext_resource type="Texture2D" uid="uid://b3sg8oamch2i1" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_STONE_PANEL_2png.png" id="2_q760f"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_xw2d6"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbq0883cd15f1" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_COLUMN.jpg" id="3_f73tr"]
|
||||
[ext_resource type="Texture2D" uid="uid://c0r4dms44wx08" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_COLUM2N.png" id="4_qwvcf"]
|
||||
[ext_resource type="Texture2D" uid="uid://gkqp4camk1mo" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_STONE_PANEL_1png.png" id="5_uvbeu"]
|
||||
@@ -19,7 +18,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://cagfhd5tagp27" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_TILE5.png" id="16_linox"]
|
||||
[ext_resource type="Texture2D" uid="uid://cjjdttsu7sily" path="res://src/map/dungeon/models/Set A/04. Antechamber B/TREE_ROOM_VER2_starsigns.png" id="17_xt3ee"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="19_rlr0c"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="21_s12yd"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="22_3xjct"]
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="23_sd6x0"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="24_nv6nc"]
|
||||
@@ -27,7 +25,6 @@
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_h5y3c"]
|
||||
resource_name = "Material.391"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_q760f")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -66,12 +63,10 @@ shadow_mesh = SubResource("ArrayMesh_rlicb")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xdp2w"]
|
||||
resource_name = "Material.136"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_f73tr")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ybfkw"]
|
||||
resource_name = "Material.138"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_qwvcf")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_52sdn"]
|
||||
@@ -135,12 +130,10 @@ shadow_mesh = SubResource("ArrayMesh_52sdn")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rxgt7"]
|
||||
resource_name = "Material.060"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_f73tr")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_clsuu"]
|
||||
resource_name = "Material.063"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_qwvcf")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_x6wd8"]
|
||||
@@ -204,25 +197,21 @@ shadow_mesh = SubResource("ArrayMesh_x6wd8")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m00gp"]
|
||||
resource_name = "Material.009"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_uvbeu")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0rjvg"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_dnovv")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ndird"]
|
||||
resource_name = "Material.006"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_f73tr")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gufwc"]
|
||||
resource_name = "Material.010"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_q760f")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -330,48 +319,40 @@ shadow_mesh = SubResource("ArrayMesh_k4ex4")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r061q"]
|
||||
resource_name = "Material.167"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_5f5sg")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_biofb"]
|
||||
resource_name = "Material.168"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_12rgr")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_k77md"]
|
||||
resource_name = "Material.169"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_q760f")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2abcv"]
|
||||
resource_name = "Material.170"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_12rgr")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gp3yr"]
|
||||
resource_name = "Material.171"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_uvbeu")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pq386"]
|
||||
resource_name = "Material.172"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_12rgr")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2jd8v"]
|
||||
resource_name = "Material.173"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_1gywy")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ihoel"]
|
||||
resource_name = "Material.174"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_k0354")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -380,12 +361,10 @@ resource_name = "Material.175"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_nfmsf")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ph33e"]
|
||||
resource_name = "Material.176"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_osfp2")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_p6gmo"]
|
||||
@@ -835,41 +814,35 @@ shadow_mesh = SubResource("ArrayMesh_govf2")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_o5n6y"]
|
||||
resource_name = "Material.091"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_gdsmt")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_icyxt"]
|
||||
resource_name = "Material.092"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_jhsyh")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_g0fpp"]
|
||||
resource_name = "Material.093"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_0k5cq")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vgfwv"]
|
||||
resource_name = "Material.094"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_linox")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_o1a5q"]
|
||||
resource_name = "Material.003"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_q760f")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fvlea"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_xt3ee")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -1042,7 +1015,6 @@ data = PackedVector3Array(27.7283, 2.9884, 14.2001, 27.7283, 9.9474, 23.5665, 27
|
||||
albedo_texture = ExtResource("2_q760f")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n7s5m"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("23_sd6x0")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -1050,7 +1022,6 @@ texture_filter = 0
|
||||
albedo_texture = ExtResource("24_nv6nc")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tnism"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("24_nv6nc")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_cgshv"]
|
||||
@@ -1064,16 +1035,11 @@ size = Vector2(20, 16)
|
||||
size = Vector3(19.9911, 1, 15.9615)
|
||||
|
||||
[node name="Antechamber B" type="Node3D"]
|
||||
script = ExtResource("1_owolg")
|
||||
size_in_voxels = Vector3i(5, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("1_58osi")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Antechamber B" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_xw2d6")
|
||||
|
||||
[node name="TREE_ROOM_VER2_1" type="Node3D" parent="Model/Antechamber B"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29.0197, -61.6663, -123.329)
|
||||
@@ -1165,9 +1131,6 @@ shape = SubResource("ConcavePolygonShape3D_b3r1q")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("21_s12yd")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00840919, 1.19798, -0.0205792)
|
||||
visible = false
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=87 format=4 uid="uid://cam640h4euewx"]
|
||||
[gd_scene load_steps=85 format=4 uid="uid://cam640h4euewx"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_hww7y"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_et5yn"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_5ni02"]
|
||||
[ext_resource type="Texture2D" uid="uid://yv16a32nmuwg" path="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_tile2.png" id="2_hnabh"]
|
||||
[ext_resource type="Texture2D" uid="uid://ctmn1oyu2llal" path="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_CEILING_1.jpg" id="3_dl8qf"]
|
||||
[ext_resource type="Texture2D" uid="uid://bworoo3u2hlob" path="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_STONE_PANEL_2png.png" id="4_76lx1"]
|
||||
@@ -19,53 +18,44 @@
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="16_5ekaa"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="17_4r724"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="19_yh0qc"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="21_5mo1p"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="23_2yaqs"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mbeyw"]
|
||||
resource_name = "Material.167"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_hnabh")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1qamr"]
|
||||
resource_name = "Material.168"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_dl8qf")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fuf2g"]
|
||||
resource_name = "Material.169"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_76lx1")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_316pe"]
|
||||
resource_name = "Material.170"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_dl8qf")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vd4u3"]
|
||||
resource_name = "Material.171"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_1jp0w")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_667k0"]
|
||||
resource_name = "Material.172"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_dl8qf")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qs0kg"]
|
||||
resource_name = "Material.173"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_5jef7")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8wt8s"]
|
||||
resource_name = "Material.174"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_6jkah")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -74,12 +64,10 @@ resource_name = "Material.175"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_16vv2")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rwaue"]
|
||||
resource_name = "Material.176"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_pptfd")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_h5khw"]
|
||||
@@ -322,7 +310,6 @@ shadow_mesh = SubResource("ArrayMesh_h5khw")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jkuhy"]
|
||||
resource_name = "Material.138"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_su6hg")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_67va3"]
|
||||
@@ -360,7 +347,6 @@ shadow_mesh = SubResource("ArrayMesh_67va3")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u4wm3"]
|
||||
resource_name = "Material.250"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5elju")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_1ustd"]
|
||||
@@ -424,7 +410,6 @@ shadow_mesh = SubResource("ArrayMesh_1ustd")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8xkfq"]
|
||||
resource_name = "Material.007"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_1jp0w")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -463,18 +448,15 @@ shadow_mesh = SubResource("ArrayMesh_ioffe")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mp6dd"]
|
||||
resource_name = "Material.338"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5elju")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1ah4e"]
|
||||
resource_name = "Material.079"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_su6hg")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d2cop"]
|
||||
resource_name = "Material.249"
|
||||
shading_mode = 1
|
||||
albedo_color = Color(0.619351, 0.856174, 0.814509, 1)
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_omqti"]
|
||||
@@ -558,7 +540,6 @@ shadow_mesh = SubResource("ArrayMesh_omqti")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fkm28"]
|
||||
resource_name = "Material.340"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5elju")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_efjfe"]
|
||||
@@ -622,7 +603,6 @@ resource_name = "Material.137"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_flnu2")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_q6chy"]
|
||||
@@ -662,7 +642,6 @@ resource_name = "Material.151"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_flnu2")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_rwl4j"]
|
||||
@@ -702,7 +681,6 @@ resource_name = "Material.155"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_flnu2")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_3hqwy"]
|
||||
@@ -742,7 +720,6 @@ resource_name = "Material.156"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_flnu2")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_kh6rs"]
|
||||
@@ -780,35 +757,30 @@ shadow_mesh = SubResource("ArrayMesh_kh6rs")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_f3dlw"]
|
||||
resource_name = "Material.341"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_fmtev")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mxjkh"]
|
||||
resource_name = "Material.149"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_fmtev")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gjcwk"]
|
||||
resource_name = "Material.342"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_fmtev")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xf3cm"]
|
||||
resource_name = "Material.343"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_fmtev")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_80q5g"]
|
||||
resource_name = "Material.001"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_k1kng")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -977,21 +949,18 @@ shadow_mesh = SubResource("ArrayMesh_mamfu")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1slct"]
|
||||
resource_name = "Material.008"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_42pfa")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kd7re"]
|
||||
resource_name = "Material.042"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_fmtev")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nis23"]
|
||||
resource_name = "Material.002"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_1jp0w")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -1092,7 +1061,6 @@ height = 12.0
|
||||
radius = 2.0
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2xv0l"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_5ekaa")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -1100,7 +1068,6 @@ texture_filter = 0
|
||||
albedo_texture = ExtResource("17_4r724")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dd0w8"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_4r724")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_c4wqw"]
|
||||
@@ -1111,15 +1078,10 @@ material = ExtResource("23_2yaqs")
|
||||
size = Vector2(36, 36)
|
||||
|
||||
[node name="Pit Room A" type="Node3D"]
|
||||
script = ExtResource("1_hww7y")
|
||||
size_in_voxels = Vector3i(9, 1, 9)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("1_5ni02")
|
||||
|
||||
[node name="Pit Room A" type="Node3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.0629635)
|
||||
script = ExtResource("2_et5yn")
|
||||
|
||||
[node name="PIT_ROOM_VER2" type="Node3D" parent="Pit Room A"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -13.5541, -69.249, -123.875)
|
||||
@@ -1278,9 +1240,6 @@ shape = SubResource("CylinderShape3D_uo0xi")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("21_5mo1p")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0496787, 4.31423, -0.329679)
|
||||
visible = false
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=81 format=4 uid="uid://b7111krf365x0"]
|
||||
[gd_scene load_steps=79 format=4 uid="uid://b7111krf365x0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_jccmw"]
|
||||
[ext_resource type="Texture2D" uid="uid://bb7y5jjl32b11" path="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_STONE_PANEL_2png.png" id="2_40w7a"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_fedas"]
|
||||
[ext_resource type="Texture2D" uid="uid://1bmgm045nm7e" path="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN.jpg" id="3_87bce"]
|
||||
@@ -15,7 +14,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://cl6gq1xxh7a1p" path="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_STONE_PANEL_1png.png" id="12_7tgyc"]
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="13_66rjw"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="15_n8s21"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="17_atu1n"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="19_dmkqn"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ta5ix"]
|
||||
@@ -846,17 +844,12 @@ material = ExtResource("19_dmkqn")
|
||||
size = Vector2(36, 32)
|
||||
|
||||
[node name="Balcony Room A" type="Node3D"]
|
||||
script = ExtResource("1_jccmw")
|
||||
size_in_voxels = Vector3i(9, 1, 8)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 1
|
||||
script = ExtResource("2_fedas")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="InnerBalcony" type="Node3D" parent="Model"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.041173)
|
||||
script = ExtResource("2_fedas")
|
||||
|
||||
[node name="INNER_BALCONY_ROOM_VER2" type="Node3D" parent="Model/InnerBalcony"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.5355, -69.5131, -79.2483)
|
||||
@@ -1192,9 +1185,6 @@ material_override = SubResource("StandardMaterial3D_ce8rm")
|
||||
operation = 2
|
||||
size = Vector3(4.45825, 5.09937, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("17_atu1n")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=86 format=4 uid="uid://vdhl32je6hq2"]
|
||||
[gd_scene load_steps=84 format=4 uid="uid://vdhl32je6hq2"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_j1kxr"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_6xco5"]
|
||||
[ext_resource type="Texture2D" uid="uid://dytao2mlwn70b" path="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_STONE_PANEL_2png.png" id="3_po4ye"]
|
||||
[ext_resource type="Texture2D" uid="uid://donkyolj48lnx" path="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA003.jpg" id="4_u2s1f"]
|
||||
@@ -23,13 +22,11 @@
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="21_jdoki"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="22_3r6v3"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="23_rhlsp"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="25_8521a"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="27_mgor6"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3iqv8"]
|
||||
resource_name = "Material.015"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_po4ye")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -68,7 +65,6 @@ shadow_mesh = SubResource("ArrayMesh_k22jy")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x25qt"]
|
||||
resource_name = "Material.037"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_po4ye")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -106,18 +102,15 @@ shadow_mesh = SubResource("ArrayMesh_bs7ei")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_06euu"]
|
||||
resource_name = "Material.046"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_u2s1f")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fy8ru"]
|
||||
resource_name = "Material.053"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_5jr8j")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wu1d5"]
|
||||
resource_name = "Material.051"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_5jr8j")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_f11a0"]
|
||||
@@ -843,44 +836,37 @@ shadow_mesh = SubResource("ArrayMesh_13d1s")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4mgj4"]
|
||||
resource_name = "Material.011"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_hdysd")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cuyx1"]
|
||||
resource_name = "Material.012"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_0g1v2")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_o207x"]
|
||||
resource_name = "Material.013"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_kcjq7")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4duxx"]
|
||||
resource_name = "Material.014"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_po4ye")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7gdb5"]
|
||||
resource_name = "Material.016"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_kcjq7")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dd25y"]
|
||||
resource_name = "Material.047"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_hdysd")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pflir"]
|
||||
resource_name = "Material.050"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_0g1v2")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_io7kd"]
|
||||
@@ -1079,48 +1065,40 @@ shadow_mesh = SubResource("ArrayMesh_io7kd")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_unjjc"]
|
||||
resource_name = "Material.167"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_kov0t")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0c0l6"]
|
||||
resource_name = "Material.168"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_15f7d")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8tdkm"]
|
||||
resource_name = "Material.169"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_po4ye")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_b614r"]
|
||||
resource_name = "Material.170"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_15f7d")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vfkmw"]
|
||||
resource_name = "Material.171"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_hdysd")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5r77c"]
|
||||
resource_name = "Material.172"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_15f7d")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hl81c"]
|
||||
resource_name = "Material.173"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_26e3e")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5atwm"]
|
||||
resource_name = "Material.174"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_c8egr")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -1129,12 +1107,10 @@ resource_name = "Material.175"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_a3t4a")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kt0pu"]
|
||||
resource_name = "Material.176"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_bodf5")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_pvemr"]
|
||||
@@ -1412,48 +1388,41 @@ shadow_mesh = SubResource("ArrayMesh_mlqho")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1gyrn"]
|
||||
resource_name = "Material.039"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_rsggy")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bfexb"]
|
||||
resource_name = "Material.040"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_ff6nl")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vbovh"]
|
||||
resource_name = "Material.041"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_tt2qh")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vango"]
|
||||
resource_name = "Material.043"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_i4tva")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_j74sc"]
|
||||
resource_name = "Material.044"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_po4ye")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_l07n7"]
|
||||
resource_name = "Material.045"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("20_8sd4o")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5cth2"]
|
||||
resource_name = "Material.006"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_kcjq7")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_byg8a"]
|
||||
@@ -1637,7 +1606,6 @@ data = PackedVector3Array(28.5183, 3.42, 10.577, 28.5183, 10.3788, 24.4935, 28.5
|
||||
size = Vector3(8, 2.20215, 2)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3mejj"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_jdoki")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -1652,16 +1620,11 @@ material = ExtResource("27_mgor6")
|
||||
size = Vector2(16, 16)
|
||||
|
||||
[node name="Statue Room" type="Node3D"]
|
||||
script = ExtResource("1_j1kxr")
|
||||
size_in_voxels = Vector3i(4, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_6xco5")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Statue Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_6xco5")
|
||||
|
||||
[node name="ANTECHAMBER_TYPE2_VER3" type="Node3D" parent="Model/Statue Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29.032, -61.655, -91.209)
|
||||
@@ -1777,9 +1740,6 @@ material_override = SubResource("StandardMaterial3D_2xt56")
|
||||
operation = 2
|
||||
size = Vector3(4, 4, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("25_8521a")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=64 format=4 uid="uid://b82dx66mgs2d7"]
|
||||
[gd_scene load_steps=63 format=4 uid="uid://b82dx66mgs2d7"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_0qew1"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_pu81k"]
|
||||
[ext_resource type="Texture2D" uid="uid://0s6f8h4dyhsx" path="res://src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_concrete_0003_color_1k.png" id="2_td7cv"]
|
||||
[ext_resource type="Texture2D" uid="uid://ja1f8fjlvn88" path="res://src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_mother.png" id="3_fplhk"]
|
||||
@@ -22,7 +21,6 @@
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6oscl"]
|
||||
resource_name = "Material.006"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_td7cv")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_es5eh"]
|
||||
@@ -141,48 +139,40 @@ shadow_mesh = SubResource("ArrayMesh_gjmq1")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_uflp8"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_uadie")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_464h6"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_4vbbn")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_c027p"]
|
||||
resource_name = "Material.016"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_38vfv")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r5mhq"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_4vbbn")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_uvds8"]
|
||||
resource_name = "Material.018"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_12t16")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_frg0e"]
|
||||
resource_name = "Material.019"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_4vbbn")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d1iab"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_r18ib")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r3b2j"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_61jn4")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -191,12 +181,10 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_fplhk")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1u2sh"]
|
||||
resource_name = "Material.026"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_dvj4a")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_5gqoj"]
|
||||
@@ -440,34 +428,29 @@ shadow_mesh = SubResource("ArrayMesh_5gqoj")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6d5gu"]
|
||||
resource_name = "Material.120"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_cthpp")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0pg1j"]
|
||||
resource_name = "Material.121"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_7wbih")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fvnp0"]
|
||||
resource_name = "Material.122"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_oh2ks")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mb7oh"]
|
||||
resource_name = "Material.123"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_x3qy3")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kpe0t"]
|
||||
resource_name = "Material.124"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_4vbbn")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -685,7 +668,6 @@ data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1,
|
||||
size = Vector3(2.12268, 5.82227, 1.63702)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bnx07"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_xx585")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -700,16 +682,11 @@ material = ExtResource("20_yhlud")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="BasinRoom" type="Node3D"]
|
||||
script = ExtResource("1_0qew1")
|
||||
size_in_voxels = Vector3i(5, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_pu81k")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="BasinRoom" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_pu81k")
|
||||
|
||||
[node name="BASIN_ROOM_VER2" type="Node3D" parent="Model/BasinRoom"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.59871, -11.707, -102.46)
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=158 format=4 uid="uid://dn5546yqyntfr"]
|
||||
[gd_scene load_steps=156 format=4 uid="uid://dn5546yqyntfr"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_7tf58"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_xx257"]
|
||||
[ext_resource type="Texture2D" uid="uid://c8xws50jtdmp5" path="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_download.jpg" id="3_xx257"]
|
||||
[ext_resource type="Texture2D" uid="uid://krsdfn2w6we" path="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_WALL TILE 1.jpg" id="4_6p8o4"]
|
||||
@@ -22,13 +21,11 @@
|
||||
[ext_resource type="Texture2D" uid="uid://56i82cxf0tl1" path="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_PIPE.jpg" id="18_f8yxq"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="18_suaky"]
|
||||
[ext_resource type="Texture2D" uid="uid://ba3ecx1vqqjid" path="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_starsigns.png" id="19_ahdj5"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="19_l8s5t"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="21_ahdj5"]
|
||||
[ext_resource type="PackedScene" uid="uid://duis2vhf5ojy3" path="res://src/item_rescue/ItemRescue.tscn" id="24_x7lek"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tlbfk"]
|
||||
resource_name = "Material.144"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_xx257")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_mwvap"]
|
||||
@@ -68,27 +65,23 @@ shadow_mesh = SubResource("ArrayMesh_mwvap")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_igla0"]
|
||||
resource_name = "Material.137"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_6p8o4")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x46yg"]
|
||||
resource_name = "Material.138"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_dus7i")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wgiqj"]
|
||||
resource_name = "Material.139"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_qdonm")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d3vmp"]
|
||||
resource_name = "Material.141"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_f5yj7")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -196,7 +189,6 @@ shadow_mesh = SubResource("ArrayMesh_xmdvs")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_heuot"]
|
||||
resource_name = "Material.145"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_wa6q3")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_7sbwg"]
|
||||
@@ -235,7 +227,6 @@ shadow_mesh = SubResource("ArrayMesh_7sbwg")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2dtld"]
|
||||
resource_name = "Material.146"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_wa6q3")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_rngo2"]
|
||||
@@ -275,7 +266,6 @@ shadow_mesh = SubResource("ArrayMesh_rngo2")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_klvsv"]
|
||||
resource_name = "Material.148"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_h38gl")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_57q84"]
|
||||
@@ -314,7 +304,6 @@ shadow_mesh = SubResource("ArrayMesh_57q84")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xt7lb"]
|
||||
resource_name = "Material.147"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_uesb2")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -386,48 +375,40 @@ shadow_mesh = SubResource("ArrayMesh_w76xp")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ikjh0"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_mg85w")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_s66wy"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_f5yj7")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_skjrg"]
|
||||
resource_name = "Material.016"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_16gwq")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u7fl0"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_f5yj7")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n2xcp"]
|
||||
resource_name = "Material.018"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_8q7fa")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hwc8e"]
|
||||
resource_name = "Material.019"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_f5yj7")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3yjc0"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_rmjiw")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ud120"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_fdg31")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -436,12 +417,10 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_suaky")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_sw5jf"]
|
||||
resource_name = "Material.026"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_l8s5t")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_msnid"]
|
||||
@@ -720,12 +699,10 @@ shadow_mesh = SubResource("ArrayMesh_xsohg")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y2hnp"]
|
||||
resource_name = "Material.142"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_f8yxq")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wunpy"]
|
||||
resource_name = "Material.143"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_ahdj5")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_ljd5k"]
|
||||
@@ -2017,7 +1994,6 @@ shadow_mesh = SubResource("ArrayMesh_dge0l")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3hnyc"]
|
||||
resource_name = "Material.003"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_16gwq")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -2088,7 +2064,6 @@ shadow_mesh = SubResource("ArrayMesh_hotpv")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_s55r2"]
|
||||
resource_name = "Material.007"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_8q7fa")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -2197,12 +2172,10 @@ data = PackedVector3Array(-20.883, 13.9165, 6.9583, -20.883, 11.7329, -6.9583, -
|
||||
data = PackedVector3Array(1.1031, 35.6283, -8.8409, 1.103, 1.4381, 9.0516, 1.103, 35.6283, 9.0516, 1.1031, 35.6283, -8.8409, 1.1031, 1.4381, -8.8409, 1.103, 1.4381, 9.0516, -0.1629, 35.6283, 8.9857, -1.0459, 1.4381, 8.9943, -1.0459, 35.6283, 8.9943, -0.1629, 35.6283, 8.9857, -0.1629, 1.4381, 8.9857, -1.0459, 1.4381, 8.9943, 0.518, 35.4239, -14.0641, 1.103, 35.6283, 9.0516, 0.3151, 35.6283, 8.9857, 0.518, 35.4239, -14.0641, 1.1031, 35.6283, -8.8409, 1.103, 35.6283, 9.0516, -0.3209, 1.9378, -14.735, -1.0459, 1.4381, 8.9943, -0.1629, 1.4381, 8.9857, -0.3209, 1.9378, -14.735, -1.0463, 1.4381, -8.9067, -1.0459, 1.4381, 8.9943, 0.518, 1.2337, -14.0641, -0.1629, 1.4381, 8.9857, 0.3151, 1.4381, 8.9857, 0.518, 1.2337, -14.0641, -0.3209, 1.9378, -14.735, -0.1629, 1.4381, 8.9857, -1.0463, 35.6283, -8.9067, -0.1629, 35.6283, 8.9857, -1.0459, 35.6283, 8.9943, -1.0463, 35.6283, -8.9067, -0.3209, 36.128, -14.735, -0.1629, 35.6283, 8.9857, 0.3151, 35.6283, 8.9857, -0.1629, 1.4381, 8.9857, -0.1629, 35.6283, 8.9857, 0.3151, 35.6283, 8.9857, 0.3151, 1.4381, 8.9857, -0.1629, 1.4381, 8.9857, 1.103, 35.6283, 9.0516, 0.3151, 1.4381, 8.9857, 0.3151, 35.6283, 8.9857, 1.103, 35.6283, 9.0516, 1.103, 1.4381, 9.0516, 0.3151, 1.4381, 8.9857, 1.1031, 1.4381, -8.8409, 0.3151, 1.4381, 8.9857, 1.103, 1.4381, 9.0516, 1.1031, 1.4381, -8.8409, 0.518, 1.2337, -14.0641, 0.3151, 1.4381, 8.9857, -0.3209, 36.128, -14.735, 0.3151, 35.6283, 8.9857, -0.1629, 35.6283, 8.9857, -0.3209, 36.128, -14.735, 0.518, 35.4239, -14.0641, 0.3151, 35.6283, 8.9857, -0.1486, 35.6517, -21.8239, 0.3293, 1.4615, -21.6373, 0.3293, 35.6517, -21.6373, -0.1486, 35.6517, -21.8239, -0.1486, 1.4615, -21.8239, 0.3293, 1.4615, -21.6373, -0.1486, 35.6517, -21.8239, 0.518, 35.4239, -14.0641, -0.3209, 36.128, -14.735, -0.1486, 35.6517, -21.8239, 0.3293, 35.6517, -21.6373, 0.518, 35.4239, -14.0641, 0.3293, 1.4615, -21.6373, -0.3209, 1.9378, -14.735, 0.518, 1.2337, -14.0641, 0.3293, 1.4615, -21.6373, -0.1486, 1.4615, -21.8239, -0.3209, 1.9378, -14.735, -1.0459, 35.6283, 8.9943, -1.0463, 1.4381, -8.9067, -1.0463, 35.6283, -8.9067, -1.0459, 35.6283, 8.9943, -1.0459, 1.4381, 8.9943, -1.0463, 1.4381, -8.9067, -0.1486, 35.6517, -21.8239, -0.3209, 1.9378, -14.735, -0.1486, 1.4615, -21.8239, -0.1486, 35.6517, -21.8239, -0.3209, 36.128, -14.735, -0.3209, 1.9378, -14.735, -0.3209, 36.128, -14.735, -1.0463, 1.4381, -8.9067, -0.3209, 1.9378, -14.735, -0.3209, 36.128, -14.735, -1.0463, 35.6283, -8.9067, -1.0463, 1.4381, -8.9067, 0.518, 1.2337, -14.0641, 1.1031, 35.6283, -8.8409, 0.518, 35.4239, -14.0641, 0.518, 1.2337, -14.0641, 1.1031, 1.4381, -8.8409, 1.1031, 35.6283, -8.8409, 0.3293, 35.6517, -21.6373, 0.518, 1.2337, -14.0641, 0.518, 35.4239, -14.0641, 0.3293, 35.6517, -21.6373, 0.3293, 1.4615, -21.6373, 0.518, 1.2337, -14.0641)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51rrf"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_fdg31")
|
||||
texture_filter = 0
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_alrge"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_suaky")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_x7lek"]
|
||||
@@ -2213,17 +2186,12 @@ material = ExtResource("21_ahdj5")
|
||||
size = Vector2(12, 16)
|
||||
|
||||
[node name="Item Transfer Room" type="Node3D"]
|
||||
script = ExtResource("1_7tf58")
|
||||
size_in_voxels = Vector3i(3, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 1
|
||||
script = ExtResource("2_xx257")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Item Transfer Room" type="Node3D" parent="Model"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_xx257")
|
||||
|
||||
[node name="Room" type="Node3D" parent="Model/Item Transfer Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.68985, 0.186505, 3)
|
||||
@@ -2506,9 +2474,6 @@ shape = SubResource("ConcavePolygonShape3D_6p8o4")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("19_l8s5t")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0314088, 4.23029, -0.0385468)
|
||||
visible = false
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=57 format=4 uid="uid://dhm2lyfkrjugf"]
|
||||
[gd_scene load_steps=55 format=4 uid="uid://dhm2lyfkrjugf"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_lh7xt"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_lh7xt"]
|
||||
[ext_resource type="Texture2D" uid="uid://cxc0mh4uf3ndf" path="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_RAIL_TRANSPARENT_PLANE.png" id="3_08sij"]
|
||||
[ext_resource type="Texture2D" uid="uid://b0k5ir622j1f7" path="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_WALL TILE 1.jpg" id="4_24ug2"]
|
||||
@@ -17,7 +16,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://cwb0ty7r3ea7v" path="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN-DARKER.png" id="15_5vjoh"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="16_5u3o4"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="18_tix7m"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="19_gelds"]
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="20_60mlu"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="21_j6xkj"]
|
||||
|
||||
@@ -26,7 +24,6 @@ resource_name = "Material.017"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_08sij")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -97,26 +94,22 @@ shadow_mesh = SubResource("ArrayMesh_g47gq")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fkbaw"]
|
||||
resource_name = "Material.008"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_24ug2")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_58rq5"]
|
||||
resource_name = "Material.067"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_8yfvr")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_oje4j"]
|
||||
resource_name = "Material.098"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_k0ihs")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_43j27"]
|
||||
resource_name = "Material.024"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_81ou3")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_e6kyl"]
|
||||
@@ -227,48 +220,40 @@ shadow_mesh = SubResource("ArrayMesh_e6kyl")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_g0qo4"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_0b8ra")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_te13v"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_wygt3")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eltq8"]
|
||||
resource_name = "Material.016"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_81ou3")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5ejed"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_wygt3")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bmjlh"]
|
||||
resource_name = "Material.018"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_odbpv")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qxdq4"]
|
||||
resource_name = "Material.019"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_wygt3")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_la5d2"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_gvmgm")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nagpr"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_2k3rc")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -277,12 +262,10 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_e01dq")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_70xnq"]
|
||||
resource_name = "Material.026"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_k0ihs")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_xyet5"]
|
||||
@@ -528,7 +511,6 @@ shadow_mesh = SubResource("ArrayMesh_xyet5")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_w3x6a"]
|
||||
resource_name = "Material.069"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_u45k1")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -566,7 +548,6 @@ shadow_mesh = SubResource("ArrayMesh_c2hqw")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_q4jvb"]
|
||||
resource_name = "Material.001"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_5vjoh")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_elo4i"]
|
||||
@@ -610,7 +591,6 @@ data = PackedVector3Array(24.3776, 0.0008, 7.2976, 24.3776, 1.0438, 4.3556, 24.3
|
||||
height = 5.7417
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jgsec"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("20_60mlu")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -618,7 +598,6 @@ texture_filter = 0
|
||||
albedo_texture = ExtResource("21_j6xkj")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m6mfk"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_j6xkj")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_7sgjq"]
|
||||
@@ -629,16 +608,11 @@ material = ExtResource("18_tix7m")
|
||||
size = Vector2(48, 28)
|
||||
|
||||
[node name="Long Room" type="Node3D"]
|
||||
script = ExtResource("1_lh7xt")
|
||||
size_in_voxels = Vector3i(12, 1, 7)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_lh7xt")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Long Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_lh7xt")
|
||||
|
||||
[node name="Room" type="Node3D" parent="Model/Long Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.270661, -0.291467)
|
||||
@@ -901,9 +875,6 @@ operation = 2
|
||||
size = Vector3(4, 4, 2)
|
||||
material = SubResource("StandardMaterial3D_m6mfk")
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("19_gelds")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=83 format=4 uid="uid://dhkbvos11tkdw"]
|
||||
[gd_scene load_steps=81 format=4 uid="uid://dhkbvos11tkdw"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_5ijis"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_ya417"]
|
||||
[ext_resource type="Texture2D" uid="uid://b8fg3ns5l0uhi" path="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_STONE_PANEL_2png.png" id="3_kr6uv"]
|
||||
[ext_resource type="Texture2D" uid="uid://dstgcyy6hrwbb" path="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_dirt.png" id="4_f5dub"]
|
||||
@@ -22,18 +21,15 @@
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="20_kv51m"]
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="21_vlg2t"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="22_drvrr"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="23_6yvdc"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="25_j2tdk"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bayb2"]
|
||||
resource_name = "Material.016"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_kr6uv")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_53gfh"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_f5dub")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -96,7 +92,6 @@ resource_name = "Material.247"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_yr5s6")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_t1o77"]
|
||||
@@ -133,12 +128,10 @@ shadow_mesh = SubResource("ArrayMesh_t1o77")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6cref"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_7hbdc")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kladb"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_83xnr")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_dq1f7"]
|
||||
@@ -204,7 +197,6 @@ resource_name = "Material.001"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_0burh")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_tltgy"]
|
||||
@@ -273,7 +265,6 @@ shadow_mesh = SubResource("ArrayMesh_7v2rs")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qnc06"]
|
||||
resource_name = "Material.008"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_3h3md")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_p85uu"]
|
||||
@@ -311,7 +302,6 @@ shadow_mesh = SubResource("ArrayMesh_p85uu")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vnntu"]
|
||||
resource_name = "Material.120"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_olttb")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -351,7 +341,6 @@ shadow_mesh = SubResource("ArrayMesh_pxkfn")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e6d2o"]
|
||||
resource_name = "Material.006"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_ekqly")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_sd0h5"]
|
||||
@@ -391,20 +380,17 @@ shadow_mesh = SubResource("ArrayMesh_sd0h5")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jbvss"]
|
||||
resource_name = "Material.121"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_s0fh2")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eiyu2"]
|
||||
resource_name = "Material.122"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_ric3y")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3wodh"]
|
||||
resource_name = "Material.124"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_83xnr")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -515,7 +501,6 @@ shadow_mesh = SubResource("ArrayMesh_ius5e")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kt200"]
|
||||
resource_name = "Material.149"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_s0fh2")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -555,37 +540,31 @@ shadow_mesh = SubResource("ArrayMesh_nnqgd")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hm1ag"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_dgepy")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4cmut"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_83xnr")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_udru8"]
|
||||
resource_name = "Material.018"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_ra8sq")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7848q"]
|
||||
resource_name = "Material.019"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_83xnr")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_st2s3"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_af840")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6xbus"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_e7lrm")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -594,12 +573,10 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_a1ufj")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qv0r1"]
|
||||
resource_name = "Material.026"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_mk7we")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_8lut2"]
|
||||
@@ -932,16 +909,13 @@ size = Vector3(1.30964, 1, 1.2808)
|
||||
size = Vector3(6.69997, 2.80396, 1.65052)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51rrf"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_vlg2t")
|
||||
texture_filter = 0
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_alrge"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_drvrr")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x3ul8"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_drvrr")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_3jg1k"]
|
||||
@@ -952,17 +926,11 @@ material = ExtResource("25_j2tdk")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="JumpScareRoom" type="Node3D"]
|
||||
script = ExtResource("1_5ijis")
|
||||
size_in_voxels = Vector3i(5, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 1
|
||||
script = ExtResource("2_ya417")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="JumpScareRoom" type="Node3D" parent="Model"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_ya417")
|
||||
|
||||
[node name="Room" type="Node3D" parent="Model/JumpScareRoom"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.578037, 2.29661, 1.45618)
|
||||
@@ -1089,9 +1057,6 @@ shape = SubResource("BoxShape3D_hg035")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("23_6yvdc")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0314088, 4.23029, -0.0385468)
|
||||
visible = false
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=84 format=4 uid="uid://dfpyfpnya0f4u"]
|
||||
[gd_scene load_steps=82 format=4 uid="uid://dfpyfpnya0f4u"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_ulct7"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_hbsbj"]
|
||||
[ext_resource type="Texture2D" uid="uid://bn3fhfh4jpo6p" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_tile2.png" id="2_m6505"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxs4s61r4l127" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_CEILING_1.jpg" id="3_rjto0"]
|
||||
@@ -25,52 +24,43 @@
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="22_v7b66"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="24_7qo1y"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="24_w0ing"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="26_c86xl"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mt2fa"]
|
||||
resource_name = "Material.010"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_m6505")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0kmga"]
|
||||
resource_name = "Material.011"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_rjto0")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rx3ob"]
|
||||
resource_name = "Material.012"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_ou63s")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tmhuk"]
|
||||
resource_name = "Material.013"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_rjto0")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bjn3u"]
|
||||
resource_name = "Material.024"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_aew3s")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_crowt"]
|
||||
resource_name = "Material.025"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_rjto0")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5hux8"]
|
||||
resource_name = "Material.027"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_blxte")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_afgsq"]
|
||||
resource_name = "Material.028"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_ilnpg")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -79,12 +69,10 @@ resource_name = "Material.029"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_yasdn")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1g8oe"]
|
||||
resource_name = "Material.030"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_2l87y")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_lna2h"]
|
||||
@@ -327,22 +315,18 @@ shadow_mesh = SubResource("ArrayMesh_lna2h")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_uwksk"]
|
||||
resource_name = "Material.154"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_vcgo5")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dpas2"]
|
||||
resource_name = "Material.152"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_vcgo5")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bn6sw"]
|
||||
resource_name = "Material.157"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_vcgo5")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d568p"]
|
||||
resource_name = "Material.158"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_vcgo5")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_t8blf"]
|
||||
@@ -454,42 +438,36 @@ shadow_mesh = SubResource("ArrayMesh_t8blf")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tl1x4"]
|
||||
resource_name = "Empty.005"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5p140")
|
||||
texture_repeat = false
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bw5w3"]
|
||||
resource_name = "Empty"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_litgw")
|
||||
texture_repeat = false
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_is5qe"]
|
||||
resource_name = "Empty.001"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5p140")
|
||||
texture_repeat = false
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d4rvk"]
|
||||
resource_name = "Empty.002"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5p140")
|
||||
texture_repeat = false
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_v4nfw"]
|
||||
resource_name = "Empty.003"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5p140")
|
||||
texture_repeat = false
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_t2x2i"]
|
||||
resource_name = "Empty.004"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_5p140")
|
||||
texture_repeat = false
|
||||
|
||||
@@ -638,7 +616,6 @@ shadow_mesh = SubResource("ArrayMesh_f31bo")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kn8o2"]
|
||||
resource_name = "Material.155"
|
||||
transparency = 1
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_t7brn")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_qdmaq"]
|
||||
@@ -676,24 +653,26 @@ shadow_mesh = SubResource("ArrayMesh_qdmaq")
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_leutm"]
|
||||
render_priority = 100
|
||||
shader = ExtResource("15_na4gl")
|
||||
shader_parameter/albedo = Color(0.74558, 0.74558, 0.74558, 1)
|
||||
shader_parameter/water_texture1 = ExtResource("13_t7brn")
|
||||
shader_parameter/water_texture2 = ExtResource("13_t7brn")
|
||||
shader_parameter/scroll_speed1 = Vector2(0.05, 0)
|
||||
shader_parameter/scroll_speed2 = Vector2(-0.03, 0)
|
||||
shader_parameter/blend_factor = 0.5
|
||||
shader_parameter/scale1 = Vector2(1, 1)
|
||||
shader_parameter/scale2 = Vector2(1, 1)
|
||||
shader_parameter/wave_strength = 0.03
|
||||
shader_parameter/wave_scale = 0.265
|
||||
shader_parameter/pixelation_level = 1024
|
||||
shader_parameter/FoamSize = 0.005
|
||||
shader_parameter/WaterOpacity = 1.0
|
||||
shader_parameter/FoamGlowIntensity = -0.085
|
||||
shader_parameter/surfacecolour = Color(0, 0, 0, 1)
|
||||
shader_parameter/volumecolour = Color(0, 0, 0, 1)
|
||||
shader_parameter/AirIOR = 1.0
|
||||
shader_parameter/IOR = 1.33
|
||||
shader_parameter/sampler1speed = Vector2(0.02, 0)
|
||||
shader_parameter/sampler2speed = Vector2(0, 0.02)
|
||||
shader_parameter/samplermix = 0.5
|
||||
shader_parameter/samplerscale = Vector2(0.1, 0.1)
|
||||
shader_parameter/normalstrength = 1.0
|
||||
shader_parameter/heightstrength = 0.12
|
||||
shader_parameter/refrationamount = 0.0
|
||||
shader_parameter/fog_underwater = false
|
||||
shader_parameter/edge_size = 0.1
|
||||
shader_parameter/foam_or_fade = false
|
||||
shader_parameter/far_clip = 50.0
|
||||
shader_parameter/steps = 512
|
||||
shader_parameter/ssr_screen_fade = 0.05
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r73ap"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_gtr3o")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_ypp3j"]
|
||||
@@ -767,40 +746,34 @@ resource_name = "Material.159"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_o7x30")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_25oiy"]
|
||||
resource_name = "Material.151"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_v7iwe")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ji47q"]
|
||||
resource_name = "Material.007"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_4pi80")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lpsxj"]
|
||||
resource_name = "Material.019"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_noh0d")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_c1u25"]
|
||||
resource_name = "Material.005"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_n1q8f")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bpryu"]
|
||||
resource_name = "Material.001"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("20_s6g1n")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_jlqun"]
|
||||
@@ -1001,7 +974,6 @@ data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1,
|
||||
data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, 1, 1, -1, 1, 1)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bbivh"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_v7b66")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -1013,16 +985,11 @@ material = ExtResource("24_w0ing")
|
||||
size = Vector2(28, 48)
|
||||
|
||||
[node name="Water Room" type="Node3D"]
|
||||
script = ExtResource("1_ulct7")
|
||||
size_in_voxels = Vector3i(7, 1, 12)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_hbsbj")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Water Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_hbsbj")
|
||||
|
||||
[node name="WATER_ROOM_VER2" type="Node3D" parent="Model/Water Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.07007, -18.0046, -24.5179)
|
||||
@@ -1223,9 +1190,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.195253, 0.00814819, -0.329
|
||||
operation = 2
|
||||
size = Vector3(4.47996, 4.23199, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("26_c86xl")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=101 format=4 uid="uid://c5eon2dk4ojua"]
|
||||
[gd_scene load_steps=99 format=4 uid="uid://c5eon2dk4ojua"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_bgwrn"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_bgwrn"]
|
||||
[ext_resource type="Texture2D" uid="uid://rtdq3jm6bj8t" path="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_tile2.png" id="3_dvdmk"]
|
||||
[ext_resource type="Texture2D" uid="uid://cuv1t2346y6ts" path="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_CEILING_1.jpg" id="4_xr0ya"]
|
||||
@@ -22,7 +21,6 @@
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="20_lckfy"]
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="21_hshrs"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="22_gbtai"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="23_atefy"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="25_082m7"]
|
||||
[ext_resource type="PackedScene" uid="uid://jds3hr41coal" path="res://src/npc/Ran/Ran.tscn" id="26_8yn83"]
|
||||
|
||||
@@ -1468,18 +1466,13 @@ material = ExtResource("25_082m7")
|
||||
size = Vector2(32, 36)
|
||||
|
||||
[node name="RansRoom" type="Node3D"]
|
||||
script = ExtResource("1_bgwrn")
|
||||
size_in_voxels = Vector3i(8, 1, 9)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 1
|
||||
script = ExtResource("2_bgwrn")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="RansRoom" type="Node3D" parent="Model"]
|
||||
unique_name_in_owner = true
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.168267, 0)
|
||||
script = ExtResource("2_bgwrn")
|
||||
|
||||
[node name="Room" type="Node3D" parent="Model/RansRoom"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.513426, 6.58219, -7.03014)
|
||||
@@ -1784,9 +1777,6 @@ shape = SubResource("CylinderShape3D_tja2i")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("23_atefy")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.420892, 2.99226, -0.040622)
|
||||
visible = false
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=100 format=4 uid="uid://crf30tibwsnri"]
|
||||
[gd_scene load_steps=98 format=4 uid="uid://crf30tibwsnri"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_bglxp"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_5aadh"]
|
||||
[ext_resource type="Texture2D" uid="uid://bjfor5dhdsa32" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick3.png" id="3_5aadh"]
|
||||
[ext_resource type="Texture2D" uid="uid://ejw5b82rcu64" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png" id="4_xhe56"]
|
||||
@@ -26,7 +25,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://cxv6xaxhi71bg" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_KNOWLEDGE_PAPER_2.png" id="22_lqg1e"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="22_oehi4"]
|
||||
[ext_resource type="Texture2D" uid="uid://ce8snm6l6hu1x" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_KNOWLEDGEPAPER_1.png" id="23_3s5fx"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="23_frwwy"]
|
||||
[ext_resource type="Texture2D" uid="uid://da42up4mv46kj" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_claude-monet.jpg" id="24_t8nkf"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="25_25af7"]
|
||||
[ext_resource type="Texture2D" uid="uid://b5hbvxvxl8gn6" path="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_Single-Peacock-Feather-Transparent-Free-PNG.png" id="25_77sl0"]
|
||||
@@ -34,7 +32,6 @@
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qg4wx"]
|
||||
resource_name = "Material.024"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_5aadh")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -75,7 +72,6 @@ shadow_mesh = SubResource("ArrayMesh_01rqy")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_je714"]
|
||||
resource_name = "Material.069"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_xhe56")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_7gr4q"]
|
||||
@@ -115,7 +111,6 @@ shadow_mesh = SubResource("ArrayMesh_7gr4q")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8gncq"]
|
||||
resource_name = "Material.008"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_gh7is")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -203,17 +198,14 @@ shadow_mesh = SubResource("ArrayMesh_mwwpi")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e16rh"]
|
||||
resource_name = "Material.011"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_dterl")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eqlbk"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_201ll")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eerkc"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_0lf1a")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0g244"]
|
||||
@@ -221,7 +213,6 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_cguah")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_e6kaq"]
|
||||
@@ -329,7 +320,6 @@ shadow_mesh = SubResource("ArrayMesh_e6kaq")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fl6qo"]
|
||||
resource_name = "Material.148"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_w18gc")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_u45oq"]
|
||||
@@ -368,12 +358,10 @@ shadow_mesh = SubResource("ArrayMesh_u45oq")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rt2kh"]
|
||||
resource_name = "Material.037"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_6tkdt")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cm0rv"]
|
||||
resource_name = "Material.038"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_tk8ne")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -438,7 +426,6 @@ resource_name = "Material.025"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_63cod")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dv08p"]
|
||||
@@ -446,7 +433,6 @@ resource_name = "Material.027"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_f86hx")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m4t21"]
|
||||
@@ -454,13 +440,11 @@ resource_name = "Material.028"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_585be")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_idwar"]
|
||||
resource_name = "Material.021"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_5eiw1")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_bdas6"]
|
||||
@@ -563,7 +547,6 @@ shadow_mesh = SubResource("ArrayMesh_bdas6")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nty38"]
|
||||
resource_name = "Material.030"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_8u4ff")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -671,7 +654,6 @@ shadow_mesh = SubResource("ArrayMesh_1qr84")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pf4ce"]
|
||||
resource_name = "Material.036"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_oehi4")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_geeum"]
|
||||
@@ -710,7 +692,6 @@ shadow_mesh = SubResource("ArrayMesh_geeum")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6r7n8"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_frwwy")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -751,7 +732,6 @@ resource_name = "Material.020"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("20_04lke")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -789,7 +769,6 @@ shadow_mesh = SubResource("ArrayMesh_ms8aj")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_otkmi"]
|
||||
resource_name = "Material.031"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_25af7")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -827,7 +806,6 @@ shadow_mesh = SubResource("ArrayMesh_4rx5h")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nmgmf"]
|
||||
resource_name = "Material.032"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_lqg1e")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_glbsv"]
|
||||
@@ -864,7 +842,6 @@ shadow_mesh = SubResource("ArrayMesh_glbsv")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_oj3c2"]
|
||||
resource_name = "Material.033"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("23_3s5fx")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_1cdb8"]
|
||||
@@ -901,7 +878,6 @@ shadow_mesh = SubResource("ArrayMesh_1cdb8")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jbed4"]
|
||||
resource_name = "Material.034"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("24_t8nkf")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_anbl4"]
|
||||
@@ -941,7 +917,6 @@ resource_name = "Material.035"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("25_77sl0")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_1n1cm"]
|
||||
@@ -1003,16 +978,13 @@ radius = 0.700195
|
||||
size = Vector3(7.60083, 1, 5.47348)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51rrf"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_8u4ff")
|
||||
texture_filter = 0
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_alrge"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_oehi4")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x3ul8"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_oehi4")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_1cfoy"]
|
||||
@@ -1023,18 +995,12 @@ material = ExtResource("25_25af7")
|
||||
size = Vector2(36, 28)
|
||||
|
||||
[node name="Seshat\'s Room" type="Node3D"]
|
||||
script = ExtResource("1_bglxp")
|
||||
size_in_voxels = Vector3i(9, 1, 7)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 1
|
||||
script = ExtResource("2_5aadh")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Seshat\'s Room" type="Node3D" parent="Model"]
|
||||
unique_name_in_owner = true
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.84, 12, -0.235)
|
||||
script = ExtResource("2_5aadh")
|
||||
|
||||
[node name="16_A1_SESHATS_ROOM" type="Node3D" parent="Model/Seshat\'s Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5, -24, -47)
|
||||
@@ -1196,9 +1162,6 @@ shape = SubResource("BoxShape3D_0lf1a")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("23_frwwy")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.420892, 2.99226, -0.040622)
|
||||
visible = false
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=48 format=4 uid="uid://bn4gslp2gk8ds"]
|
||||
[gd_scene load_steps=47 format=4 uid="uid://bn4gslp2gk8ds"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="1_lepkf"]
|
||||
[ext_resource type="Texture2D" uid="uid://crsw35eypj6ry" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_WALL TILE 1.jpg" id="2_jmyyj"]
|
||||
[ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="2_xywry"]
|
||||
[ext_resource type="Texture2D" uid="uid://dpv6gobmdhgq5" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_TILE4.png" id="3_d7rg7"]
|
||||
@@ -694,12 +693,9 @@ material = ExtResource("9_7a87o")
|
||||
size = Vector2(4, 4)
|
||||
|
||||
[node name="Corridor" type="Node3D"]
|
||||
script = ExtResource("1_lepkf")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
show_debug_in_editor = false
|
||||
script = ExtResource("2_xywry")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
script = ExtResource("2_xywry")
|
||||
|
||||
[node name="18_A1_CORRIDOR_A" type="Node3D" parent="Model"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.88616, -2.025, -0.989241)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=48 format=4 uid="uid://cihbmyo0ltq4m"]
|
||||
[gd_scene load_steps=46 format=4 uid="uid://cihbmyo0ltq4m"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_3m472"]
|
||||
[ext_resource type="Script" uid="uid://bd824eigybu51" path="res://src/map/dungeon/code/ExitRoom.cs" id="2_umdkt"]
|
||||
[ext_resource type="Texture2D" uid="uid://ct3qjmo0yg3gc" path="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_darkbrick.png" id="3_umdkt"]
|
||||
[ext_resource type="Texture2D" uid="uid://q4hj2tj6drv" path="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_concrete_0003_color_1k.png" id="4_daunu"]
|
||||
@@ -19,71 +18,58 @@
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="16_ymrc7"]
|
||||
[ext_resource type="Texture2D" uid="uid://del2dfj3etokd" path="res://src/map/dungeon/textures/BLOCKED-DOOR_REGULAR.png" id="17_c2x10"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="18_r3pjb"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="19_3q8wp"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="21_am10m"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ea82x"]
|
||||
resource_name = "Dark Brick"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_umdkt")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_52dya"]
|
||||
resource_name = "Concrete"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_daunu")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vo64k"]
|
||||
resource_name = "CEILNG.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_7230f")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nsjmx"]
|
||||
resource_name = "FLOOR.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_62xqw")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cwx2s"]
|
||||
resource_name = "AREA 1 SWIRL"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_mg5bq")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ja1s1"]
|
||||
resource_name = "BOTTOM TRIM.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_byvv5")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tm0ja"]
|
||||
resource_name = "AREA 1 PANEL"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_1585g")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_aivep"]
|
||||
resource_name = "AREA 1 CEILING"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_8p2fr")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lv3p3"]
|
||||
resource_name = "Red Concrete"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_52d0e")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_sosx1"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_nm7f3")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nldi8"]
|
||||
resource_name = "TILE"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_02c4g")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cno58"]
|
||||
resource_name = "HAND TILE "
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_3yjag")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -92,12 +78,10 @@ resource_name = "MOTHER SYMBOL"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_5loij")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_72jrr"]
|
||||
resource_name = "BRICK"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_uu27i")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_1s3g5"]
|
||||
@@ -445,12 +429,10 @@ radius = 1.40381
|
||||
size = Vector3(1.31396, 11.3767, 3.75488)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51rrf"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_c2x10")
|
||||
texture_filter = 0
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_alrge"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_r3pjb")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_mg5bq"]
|
||||
@@ -464,17 +446,11 @@ material = ExtResource("21_am10m")
|
||||
size = Vector2(20, 36)
|
||||
|
||||
[node name="Floor Exit A" type="Node3D"]
|
||||
script = ExtResource("1_3m472")
|
||||
size_in_voxels = Vector3i(5, 1, 9)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 1
|
||||
script = ExtResource("2_umdkt")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Floor Exit A" type="Node3D" parent="Model"]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("2_umdkt")
|
||||
|
||||
[node name="19_A1_FLOOR_EXIT_A" type="Node3D" parent="Model/Floor Exit A"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.11174, 2.89397)
|
||||
@@ -546,9 +522,6 @@ material_override = SubResource("StandardMaterial3D_alrge")
|
||||
operation = 2
|
||||
size = Vector3(4.98816, 4, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("19_3q8wp")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=49 format=4 uid="uid://dadl2rua1ovhq"]
|
||||
[gd_scene load_steps=47 format=4 uid="uid://dadl2rua1ovhq"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_utnmd"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_rsrpd"]
|
||||
[ext_resource type="Texture2D" uid="uid://c2ysw5gb2lt13" path="res://src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_AREA_2_MAIN_STONE.png" id="3_afy15"]
|
||||
[ext_resource type="Texture2D" uid="uid://clbr72ym0olin" path="res://src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_area_2_big_tile.png" id="4_gqtls"]
|
||||
@@ -17,58 +16,49 @@
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="19_0qmwl"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="22_or4jf"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="23_ocw1o"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="24_gw3pg"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="25_6maex"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="26_x0yhc"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3gvkm"]
|
||||
resource_name = "Material.011"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_afy15")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_diq0u"]
|
||||
resource_name = "Material.042"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_gqtls")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_88s81"]
|
||||
resource_name = "Material.139"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_0qmwl")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_78p8y"]
|
||||
resource_name = "Material.044"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_dhety")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_c8ymb"]
|
||||
resource_name = "Material.026"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_hwsho")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eswiv"]
|
||||
resource_name = "Material.271"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_bi1x8")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_87bjx"]
|
||||
resource_name = "Material.286"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_aoduv")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4qmvm"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_hwsho")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_euad2"]
|
||||
@@ -265,7 +255,6 @@ shadow_mesh = SubResource("ArrayMesh_euad2")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_sufpl"]
|
||||
resource_name = "Material.006"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_4u8na")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -339,25 +328,21 @@ shadow_mesh = SubResource("ArrayMesh_ylftc")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_udima"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_aoduv")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vtmc5"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_0s1vx")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_o0kd3"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_np1sv")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_s631x"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_qpwmu")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -366,7 +351,6 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_08b0j")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -615,7 +599,6 @@ data = PackedVector3Array(34.7912, -0.0015, 13.9163, 34.7912, 13.9165, 27.8321,
|
||||
size = Vector3(2.73511, 7.17236, 3.05108)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_0qmwl")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -630,16 +613,11 @@ material = ExtResource("26_x0yhc")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Antechamber 3" type="Node3D"]
|
||||
script = ExtResource("1_utnmd")
|
||||
size_in_voxels = Vector3i(5, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_rsrpd")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Antechamber3" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_rsrpd")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Antechamber3"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.9198, -0.0404749, 0)
|
||||
@@ -701,9 +679,6 @@ shape = SubResource("BoxShape3D_dhety")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("24_gw3pg")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0224749, 1.83591, -0.00639793)
|
||||
visible = false
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=76 format=4 uid="uid://dra1mqcqhw7g0"]
|
||||
[gd_scene load_steps=74 format=4 uid="uid://dra1mqcqhw7g0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_wyqcj"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_snhgn"]
|
||||
[ext_resource type="Texture2D" uid="uid://cyikqwtmm1lt7" path="res://src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_AREA_2_MAIN_STONE.png" id="3_snhgn"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbce6boj7r8jo" path="res://src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_area_2_big_tile.png" id="4_crgp3"]
|
||||
@@ -17,7 +16,6 @@
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="15_23m4u"]
|
||||
[ext_resource type="Texture2D" uid="uid://bcqvl44t21b57" path="res://src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_AREA_2_MAIN_STON2E.png" id="15_yfmrb"]
|
||||
[ext_resource type="Texture2D" uid="uid://cnb44nex1gx08" path="res://src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_WHITE_TILE2.png" id="16_br2tj"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="16_yfmrb"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="17_br2tj"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="18_q0wh3"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="19_6dnld"]
|
||||
@@ -26,19 +24,16 @@
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7vhfa"]
|
||||
resource_name = "Material.152"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_snhgn")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_sa23r"]
|
||||
resource_name = "Material.092"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_crgp3")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8qrmm"]
|
||||
resource_name = "Material.012"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_sxgxj")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_75kju"]
|
||||
@@ -123,19 +118,16 @@ shadow_mesh = SubResource("ArrayMesh_75kju")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4ds54"]
|
||||
resource_name = "Material.168"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_q13rc")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ab51e"]
|
||||
resource_name = "Material.173"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_as381")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d2rff"]
|
||||
resource_name = "Material.174"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_j88pm")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -253,12 +245,10 @@ shadow_mesh = SubResource("ArrayMesh_tlb4o")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lg0mw"]
|
||||
resource_name = "Material.011"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_r1d3w")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ek3g4"]
|
||||
resource_name = "Material.045"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_61ndf")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_fk437"]
|
||||
@@ -358,7 +348,6 @@ resource_name = "Material.015"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_ls2ek")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -396,7 +385,6 @@ shadow_mesh = SubResource("ArrayMesh_1yu3f")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xh1vr"]
|
||||
resource_name = "Material.016"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_60slp")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -439,7 +427,6 @@ resource_name = "Material.017"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_2vrck")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -480,7 +467,6 @@ resource_name = "Material.018"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_e1oi5")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -572,13 +558,11 @@ shadow_mesh = SubResource("ArrayMesh_3ulj1")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8lsa2"]
|
||||
resource_name = "Material.020"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_j88pm")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_f4mgu"]
|
||||
resource_name = "Material.021"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_as381")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -639,7 +623,6 @@ shadow_mesh = SubResource("ArrayMesh_31ajq")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5wnjf"]
|
||||
resource_name = "Material.001"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_yfmrb")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_xbipo"]
|
||||
@@ -677,7 +660,6 @@ shadow_mesh = SubResource("ArrayMesh_xbipo")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ckvkk"]
|
||||
resource_name = "Material.024"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_yfmrb")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_v1li7"]
|
||||
@@ -715,7 +697,6 @@ shadow_mesh = SubResource("ArrayMesh_v1li7")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_734v8"]
|
||||
resource_name = "Material.023"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_br2tj")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_bwfdx"]
|
||||
@@ -764,7 +745,6 @@ height = 5.88721
|
||||
radius = 0.774902
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_6dnld")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -779,16 +759,11 @@ material = ExtResource("18_q0wh3")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Gallery Room" type="Node3D"]
|
||||
script = ExtResource("1_wyqcj")
|
||||
size_in_voxels = Vector3i(4, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_snhgn")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Gallery Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_snhgn")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Gallery Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.19835, -1.07575, 0.173335)
|
||||
@@ -952,9 +927,6 @@ shape = SubResource("CylinderShape3D_crgp3")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("16_yfmrb")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0224749, 1.83591, -0.00639793)
|
||||
visible = false
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=60 format=4 uid="uid://cq82tqhlshn1k"]
|
||||
[gd_scene load_steps=57 format=4 uid="uid://cq82tqhlshn1k"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_mjoyd"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_7fo8x"]
|
||||
[ext_resource type="Texture2D" uid="uid://bb2iuhl0qw7ys" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_222STONE.png" id="3_dlfy7"]
|
||||
[ext_resource type="Texture2D" uid="uid://h22yy7tcdq6a" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_flowers-in-water.png" id="4_8i6dt"]
|
||||
@@ -9,7 +8,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://bmbur7125f6n5" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_others_0020_color_1k.jpg" id="7_loine"]
|
||||
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/Models/water.gdshader" id="8_4rhx7"]
|
||||
[ext_resource type="Texture2D" uid="uid://bdbstgdvkux44" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STONE.png" id="8_ipevu"]
|
||||
[ext_resource type="Texture2D" uid="uid://bndhhds24kogn" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_SD137.jpg" id="9_7fo8x"]
|
||||
[ext_resource type="Texture2D" uid="uid://cepnb6nf68hpa" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_big_tile.png" id="9_elumq"]
|
||||
[ext_resource type="Texture2D" uid="uid://b3hqh7anynhh0" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_STONE_PANEL_AREA2png.png" id="10_3e0i3"]
|
||||
[ext_resource type="Texture2D" uid="uid://cjs7emjppl2p6" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_inner_rock2.png" id="11_1pmjf"]
|
||||
@@ -17,13 +15,11 @@
|
||||
[ext_resource type="Texture2D" uid="uid://utu8mv3mkxsw" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_lime_hand_relief.png" id="13_fu7kj"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="17_exoe5"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="19_y4v80"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="20_n10ny"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="21_ju35g"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="22_7wqw8"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tranh"]
|
||||
resource_name = "Material.168"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_dlfy7")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -66,7 +62,6 @@ resource_name = "Material.008"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_8i6dt")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_7j136"]
|
||||
@@ -106,7 +101,6 @@ resource_name = "Material.014"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_4rhx7")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -177,7 +171,6 @@ shadow_mesh = SubResource("ArrayMesh_h8tn4")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_plft1"]
|
||||
resource_name = "Material.006"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_7fo8x")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -253,7 +246,6 @@ shadow_mesh = SubResource("ArrayMesh_gcm0s")
|
||||
resource_name = "Material"
|
||||
transparency = 1
|
||||
cull_mode = 1
|
||||
shading_mode = 1
|
||||
albedo_color = Color(1, 1, 1, 0)
|
||||
albedo_texture = ExtResource("7_loine")
|
||||
texture_filter = 1
|
||||
@@ -278,44 +270,43 @@ blend_shape_mode = 0
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_7fo8x"]
|
||||
render_priority = 0
|
||||
shader = ExtResource("8_4rhx7")
|
||||
shader_parameter/albedo = Color(0.641934, 0.641934, 0.641934, 1)
|
||||
shader_parameter/water_texture1 = ExtResource("9_7fo8x")
|
||||
shader_parameter/water_texture2 = ExtResource("9_7fo8x")
|
||||
shader_parameter/scroll_speed1 = Vector2(0.05, 0)
|
||||
shader_parameter/scroll_speed2 = Vector2(-0.03, 0)
|
||||
shader_parameter/blend_factor = 0.5
|
||||
shader_parameter/scale1 = Vector2(1.78, 3.3)
|
||||
shader_parameter/scale2 = Vector2(1, 1)
|
||||
shader_parameter/wave_strength = 0.01
|
||||
shader_parameter/wave_scale = 0.05
|
||||
shader_parameter/pixelation_level = 1024
|
||||
shader_parameter/FoamSize = 0.29
|
||||
shader_parameter/WaterOpacity = 0.655
|
||||
shader_parameter/FoamGlowIntensity = 0.5
|
||||
shader_parameter/surfacecolour = Color(0, 0, 0, 1)
|
||||
shader_parameter/volumecolour = Color(0, 0, 0, 1)
|
||||
shader_parameter/AirIOR = 1.0
|
||||
shader_parameter/IOR = 1.33
|
||||
shader_parameter/sampler1speed = Vector2(0.02, 0)
|
||||
shader_parameter/sampler2speed = Vector2(0, 0.02)
|
||||
shader_parameter/samplermix = 0.5
|
||||
shader_parameter/samplerscale = Vector2(0.1, 0.1)
|
||||
shader_parameter/normalstrength = 1.0
|
||||
shader_parameter/heightstrength = 0.12
|
||||
shader_parameter/refrationamount = 0.0
|
||||
shader_parameter/fog_underwater = false
|
||||
shader_parameter/edge_size = 0.1
|
||||
shader_parameter/foam_or_fade = false
|
||||
shader_parameter/far_clip = 50.0
|
||||
shader_parameter/steps = 512
|
||||
shader_parameter/ssr_screen_fade = 0.05
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ir8hn"]
|
||||
resource_name = "Material.152"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_ipevu")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_smvi5"]
|
||||
resource_name = "Material.092"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_elumq")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mh1j1"]
|
||||
resource_name = "Material.002"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_3e0i3")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lvnke"]
|
||||
resource_name = "Material.010"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_1pmjf")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -461,13 +452,11 @@ shadow_mesh = SubResource("ArrayMesh_bl7k8")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1yo07"]
|
||||
resource_name = "Material.173"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_iyi8f")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rnp42"]
|
||||
resource_name = "Material.174"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_fu7kj")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -566,7 +555,6 @@ height = 12.0
|
||||
radius = 2.0
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2xv0l"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_exoe5")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -578,17 +566,12 @@ material = ExtResource("22_7wqw8")
|
||||
size = Vector2(36, 36)
|
||||
|
||||
[node name="Pit Room B" type="Node3D"]
|
||||
script = ExtResource("1_mjoyd")
|
||||
size_in_voxels = Vector3i(9, 1, 9)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_7fo8x")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="PitRoom" type="Node3D" parent="Model"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.0629635)
|
||||
script = ExtResource("2_7fo8x")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/PitRoom"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.4866, -11.2786, 1.89266)
|
||||
@@ -736,9 +719,6 @@ shape = SubResource("CylinderShape3D_uo0xi")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("20_n10ny")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0496787, 4.31423, -0.329679)
|
||||
visible = false
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=77 format=4 uid="uid://bhqmpgpegcuu5"]
|
||||
[gd_scene load_steps=75 format=4 uid="uid://bhqmpgpegcuu5"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_y05dd"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_fp3eo"]
|
||||
[ext_resource type="Texture2D" uid="uid://xnjugcy3qwuy" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_HAND-CYCLE-FLOOR.png" id="3_s0tqy"]
|
||||
[ext_resource type="Texture2D" uid="uid://6bf2rf3sic7t" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_AREA_2_MAIN_STONE.png" id="4_48uts"]
|
||||
@@ -12,7 +11,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://56j4qgrybotv" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_WHITE_layer_brick1.png" id="10_1de77"]
|
||||
[ext_resource type="Texture2D" uid="uid://ca0scs1ju3c18" path="res://src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B_railing-2_billboard.png" id="11_w68qo"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="12_4qolk"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="13_wbkjn"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="14_rhfqv"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="15_am71f"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="16_fepoq"]
|
||||
@@ -20,13 +18,11 @@
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wbpjo"]
|
||||
resource_name = "Material.248"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_s0tqy")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_woxtl"]
|
||||
resource_name = "Material.152"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_48uts")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -145,7 +141,6 @@ shadow_mesh = SubResource("ArrayMesh_txyao")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_c83b0"]
|
||||
resource_name = "Material.006"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_cky4e")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -220,7 +215,6 @@ shadow_mesh = SubResource("ArrayMesh_20cpy")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qcsxf"]
|
||||
resource_name = "Material.092"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_pg0qw")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_dmdo7"]
|
||||
@@ -316,13 +310,11 @@ shadow_mesh = SubResource("ArrayMesh_ul0rt")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xq6b5"]
|
||||
resource_name = "Material.023"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_lurn8")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xi63o"]
|
||||
resource_name = "Material.001"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_ktrwx")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_6j3c3"]
|
||||
@@ -410,7 +402,6 @@ resource_name = "Material.019"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_n4664")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_w77xm"]
|
||||
@@ -447,7 +438,6 @@ shadow_mesh = SubResource("ArrayMesh_w77xm")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ehu1r"]
|
||||
resource_name = "Material.011"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_1de77")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_gnsjs"]
|
||||
@@ -519,7 +509,6 @@ resource_name = "Material.014"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_w68qo")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -625,7 +614,6 @@ size = Vector3(1, 2.717, 1)
|
||||
size = Vector3(1, 2.717, 1)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_fepoq")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -640,16 +628,11 @@ material = ExtResource("15_am71f")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Balcony Room 2" type="Node3D"]
|
||||
script = ExtResource("1_y05dd")
|
||||
size_in_voxels = Vector3i(9, 1, 8)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_fp3eo")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="BalconyRoom2" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_fp3eo")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/BalconyRoom2"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.47922, 9.8006, -3.80776)
|
||||
@@ -938,9 +921,6 @@ material_override = SubResource("StandardMaterial3D_hwsho")
|
||||
operation = 2
|
||||
size = Vector3(4.28613, 4.31622, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("13_wbkjn")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=59 format=4 uid="uid://dbfkpodwvxmfe"]
|
||||
[gd_scene load_steps=57 format=4 uid="uid://dbfkpodwvxmfe"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_1ck42"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_dhi6g"]
|
||||
[ext_resource type="Texture2D" uid="uid://b56jom8egc532" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_AREA_2_MAIN_STONE.png" id="3_dhi6g"]
|
||||
[ext_resource type="Texture2D" uid="uid://cu3jfu4npfjtv" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_area_2_big_tile.png" id="4_uwyye"]
|
||||
@@ -13,7 +12,6 @@
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="11_axa2u"]
|
||||
[ext_resource type="Texture2D" uid="uid://satk53irxob6" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_asdasd.png" id="11_he7fn"]
|
||||
[ext_resource type="Texture2D" uid="uid://sarjystl6uln" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_HAND-CYCLE-FLOOR.png" id="12_0cdpp"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="12_tvrlh"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="13_3ytot"]
|
||||
[ext_resource type="Texture2D" uid="uid://civmkyxtgynlj" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_COLUMN_WHITE.png" id="13_tm6hx"]
|
||||
[ext_resource type="Texture2D" uid="uid://c188x5gsikb7b" path="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_mother_GOLD.png" id="14_bhfdc"]
|
||||
@@ -26,27 +24,23 @@
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0r042"]
|
||||
resource_name = "Material.011"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_dhi6g")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dk3qy"]
|
||||
resource_name = "Material.042"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_uwyye")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bpdno"]
|
||||
resource_name = "Material.139"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_jmhln")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fyjs0"]
|
||||
resource_name = "Material.026"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_itdxo")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -212,32 +206,27 @@ shadow_mesh = SubResource("ArrayMesh_8nxc4")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_l5ogi"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_axa2u")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_j1xrc"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_tvrlh")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_buvty"]
|
||||
resource_name = "Material.271"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_3ytot")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lvepf"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_fdaog")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_j2fa1"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_he7fn")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -246,7 +235,6 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_0cdpp")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -522,7 +510,6 @@ shadow_mesh = SubResource("ArrayMesh_e06yh")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_usxqx"]
|
||||
resource_name = "Material.006"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_tm6hx")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -565,7 +552,6 @@ resource_name = "Material.010"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_bhfdc")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -603,12 +589,10 @@ shadow_mesh = SubResource("ArrayMesh_dmmi2")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8j77v"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_tjos8")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e7gxn"]
|
||||
resource_name = "Material.003"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_cenxs")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_8tp23"]
|
||||
@@ -700,7 +684,6 @@ height = 4.76147
|
||||
radius = 0.75
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_he7fn")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -715,16 +698,11 @@ material = ExtResource("14_fdaog")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Pedestal Room" type="Node3D"]
|
||||
script = ExtResource("1_1ck42")
|
||||
size_in_voxels = Vector3i(5, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_dhi6g")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Pedestal Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_dhi6g")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Pedestal Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.44395, 5.66566, 3.25061)
|
||||
@@ -826,9 +804,6 @@ material_override = SubResource("StandardMaterial3D_hwsho")
|
||||
operation = 2
|
||||
size = Vector3(4.83853, 4.33453, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("12_tvrlh")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=57 format=4 uid="uid://d2k2v4bcybx3k"]
|
||||
[gd_scene load_steps=55 format=4 uid="uid://d2k2v4bcybx3k"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_siqky"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_ltal0"]
|
||||
[ext_resource type="Texture2D" uid="uid://rdbh0k3th6aw" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_STONE_PANEL_AREA2png.png" id="3_ltal0"]
|
||||
[ext_resource type="Texture2D" uid="uid://pk017vrdih1p" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_AREA_2_MAIN_STONE.png" id="4_x3ann"]
|
||||
@@ -12,7 +11,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://8m7j6ut0lac" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA2.png" id="10_rsck7"]
|
||||
[ext_resource type="Texture2D" uid="uid://e8hmgbbjk4gm" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_asdasd.png" id="11_e3fbp"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="11_rsck7"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="12_e3fbp"]
|
||||
[ext_resource type="Texture2D" uid="uid://cajax2jqgugg" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_HAND-CYCLE-FLOOR.png" id="12_vcm04"]
|
||||
[ext_resource type="Texture2D" uid="uid://b688dlvnc4648" path="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_red-petals.png" id="13_rfpos"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="13_vcm04"]
|
||||
@@ -23,7 +21,6 @@
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3w3oe"]
|
||||
resource_name = "Material.271"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_ltal0")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -64,27 +61,23 @@ shadow_mesh = SubResource("ArrayMesh_8bde2")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_v05ne"]
|
||||
resource_name = "Material.011"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_x3ann")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4kx62"]
|
||||
resource_name = "Material.042"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_wiuk0")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tx80j"]
|
||||
resource_name = "Material.139"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_4fe3u")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vlo5u"]
|
||||
resource_name = "Material.026"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_qxsak")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -260,7 +253,6 @@ shadow_mesh = SubResource("ArrayMesh_n3ydh")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bbo1j"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_qxsak")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_n02em"]
|
||||
@@ -413,25 +405,21 @@ shadow_mesh = SubResource("ArrayMesh_4ebaa")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u6lxh"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_x4vu3")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e88cb"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_imwwx")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pdyrx"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_rsck7")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1guyx"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_e3fbp")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -440,7 +428,6 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_vcm04")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -687,7 +674,6 @@ resource_name = "Material.001"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_rfpos")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_k35jx"]
|
||||
@@ -729,7 +715,6 @@ data = PackedVector3Array(-20.883, 13.9165, 6.9583, -20.883, 11.7329, -6.9583, -
|
||||
data = PackedVector3Array(1.1031, 35.6283, -8.8409, 1.103, 1.4381, 9.0516, 1.103, 35.6283, 9.0516, 1.1031, 35.6283, -8.8409, 1.1031, 1.4381, -8.8409, 1.103, 1.4381, 9.0516, -0.1629, 35.6283, 8.9857, -1.0459, 1.4381, 8.9943, -1.0459, 35.6283, 8.9943, -0.1629, 35.6283, 8.9857, -0.1629, 1.4381, 8.9857, -1.0459, 1.4381, 8.9943, 0.518, 35.4239, -14.0641, 1.103, 35.6283, 9.0516, 0.3151, 35.6283, 8.9857, 0.518, 35.4239, -14.0641, 1.1031, 35.6283, -8.8409, 1.103, 35.6283, 9.0516, -0.3209, 1.9378, -14.735, -1.0459, 1.4381, 8.9943, -0.1629, 1.4381, 8.9857, -0.3209, 1.9378, -14.735, -1.0463, 1.4381, -8.9067, -1.0459, 1.4381, 8.9943, 0.518, 1.2337, -14.0641, -0.1629, 1.4381, 8.9857, 0.3151, 1.4381, 8.9857, 0.518, 1.2337, -14.0641, -0.3209, 1.9378, -14.735, -0.1629, 1.4381, 8.9857, -1.0463, 35.6283, -8.9067, -0.1629, 35.6283, 8.9857, -1.0459, 35.6283, 8.9943, -1.0463, 35.6283, -8.9067, -0.3209, 36.128, -14.735, -0.1629, 35.6283, 8.9857, 0.3151, 35.6283, 8.9857, -0.1629, 1.4381, 8.9857, -0.1629, 35.6283, 8.9857, 0.3151, 35.6283, 8.9857, 0.3151, 1.4381, 8.9857, -0.1629, 1.4381, 8.9857, 1.103, 35.6283, 9.0516, 0.3151, 1.4381, 8.9857, 0.3151, 35.6283, 8.9857, 1.103, 35.6283, 9.0516, 1.103, 1.4381, 9.0516, 0.3151, 1.4381, 8.9857, 1.1031, 1.4381, -8.8409, 0.3151, 1.4381, 8.9857, 1.103, 1.4381, 9.0516, 1.1031, 1.4381, -8.8409, 0.518, 1.2337, -14.0641, 0.3151, 1.4381, 8.9857, -0.3209, 36.128, -14.735, 0.3151, 35.6283, 8.9857, -0.1629, 35.6283, 8.9857, -0.3209, 36.128, -14.735, 0.518, 35.4239, -14.0641, 0.3151, 35.6283, 8.9857, -0.1486, 35.6517, -21.8239, 0.3293, 1.4615, -21.6373, 0.3293, 35.6517, -21.6373, -0.1486, 35.6517, -21.8239, -0.1486, 1.4615, -21.8239, 0.3293, 1.4615, -21.6373, -0.1486, 35.6517, -21.8239, 0.518, 35.4239, -14.0641, -0.3209, 36.128, -14.735, -0.1486, 35.6517, -21.8239, 0.3293, 35.6517, -21.6373, 0.518, 35.4239, -14.0641, 0.3293, 1.4615, -21.6373, -0.3209, 1.9378, -14.735, 0.518, 1.2337, -14.0641, 0.3293, 1.4615, -21.6373, -0.1486, 1.4615, -21.8239, -0.3209, 1.9378, -14.735, -1.0459, 35.6283, 8.9943, -1.0463, 1.4381, -8.9067, -1.0463, 35.6283, -8.9067, -1.0459, 35.6283, 8.9943, -1.0459, 1.4381, 8.9943, -1.0463, 1.4381, -8.9067, -0.1486, 35.6517, -21.8239, -0.3209, 1.9378, -14.735, -0.1486, 1.4615, -21.8239, -0.1486, 35.6517, -21.8239, -0.3209, 36.128, -14.735, -0.3209, 1.9378, -14.735, -0.3209, 36.128, -14.735, -1.0463, 1.4381, -8.9067, -0.3209, 1.9378, -14.735, -0.3209, 36.128, -14.735, -1.0463, 35.6283, -8.9067, -1.0463, 1.4381, -8.9067, 0.518, 1.2337, -14.0641, 1.1031, 35.6283, -8.8409, 0.518, 35.4239, -14.0641, 0.518, 1.2337, -14.0641, 1.1031, 1.4381, -8.8409, 1.1031, 35.6283, -8.8409, 0.3293, 35.6517, -21.6373, 0.518, 1.2337, -14.0641, 0.518, 35.4239, -14.0641, 0.3293, 35.6517, -21.6373, 0.3293, 1.4615, -21.6373, 0.518, 1.2337, -14.0641)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_u073s")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -744,16 +729,11 @@ material = ExtResource("14_rfpos")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Item Transfer Room B" type="Node3D"]
|
||||
script = ExtResource("1_siqky")
|
||||
size_in_voxels = Vector3i(3, 1, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_ltal0")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Item Transfer Room B" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_ltal0")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Item Transfer Room B"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.84663, 3.15375, -2.54799)
|
||||
@@ -823,9 +803,6 @@ shape = SubResource("ConcavePolygonShape3D_ltal0")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("12_e3fbp")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0224749, 1.83591, -0.00639793)
|
||||
visible = false
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
[gd_scene load_steps=71 format=4 uid="uid://cypdcaqeylnwl"]
|
||||
[gd_scene load_steps=69 format=4 uid="uid://cypdcaqeylnwl"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_h7qp4"]
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_nwdhf"]
|
||||
[ext_resource type="Texture2D" uid="uid://c2vcstahhon0o" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_flowers-in-water.png" id="3_nwdhf"]
|
||||
[ext_resource type="Texture2D" uid="uid://c3hcmpwhns38f" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_AREA_2_MAIN_STON2E.png" id="4_h7qp4"]
|
||||
[ext_resource type="Texture2D" uid="uid://cphyqhrudnton" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_area_2_big_tile.png" id="5_vsl56"]
|
||||
@@ -18,7 +17,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://cw6v1ibhv3i83" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_railing-2_billboard.png" id="15_k70ho"]
|
||||
[ext_resource type="Texture2D" uid="uid://d0w0n6hcdwj6m" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_swirled_column _AREA222.png" id="16_uquwp"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="17_i44bd"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="18_8x0i5"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="19_p0oph"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="20_jum0i"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="21_koora"]
|
||||
@@ -29,7 +27,6 @@ resource_name = "Material"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_nwdhf")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -68,7 +65,6 @@ shadow_mesh = SubResource("ArrayMesh_ml72x")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1sadb"]
|
||||
resource_name = "AREA 2 DARKER"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_h7qp4")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -109,45 +105,38 @@ shadow_mesh = SubResource("ArrayMesh_6o2uv")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7bwcq"]
|
||||
resource_name = "FLOOR TILE AREA 2"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_vsl56")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u6lo0"]
|
||||
resource_name = "HAND"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_pku0v")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_a47cq"]
|
||||
resource_name = "STONE PANEL"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_6kmoo")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eemko"]
|
||||
resource_name = "GREEN BIT"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_nm1ej")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8gdaj"]
|
||||
resource_name = "AREA 2 MAIN"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_23vsb")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_roqyw"]
|
||||
resource_name = "INNER ROCK 1"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_jm4id")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_c1ubp"]
|
||||
resource_name = "INNER ROCK 2"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_ufrrb")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -348,7 +337,6 @@ shadow_mesh = SubResource("ArrayMesh_xftij")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ldb6s"]
|
||||
resource_name = "Empty.005"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_7pxu2")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -386,7 +374,6 @@ shadow_mesh = SubResource("ArrayMesh_septm")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d7q3t"]
|
||||
resource_name = "WATER"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_0o1jq")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_tthqj"]
|
||||
@@ -424,24 +411,26 @@ shadow_mesh = SubResource("ArrayMesh_tthqj")
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_nwdhf"]
|
||||
render_priority = 0
|
||||
shader = ExtResource("14_h7qp4")
|
||||
shader_parameter/albedo = Color(1, 1, 1, 1)
|
||||
shader_parameter/water_texture1 = ExtResource("13_0o1jq")
|
||||
shader_parameter/water_texture2 = ExtResource("13_0o1jq")
|
||||
shader_parameter/scroll_speed1 = Vector2(0.05, 0)
|
||||
shader_parameter/scroll_speed2 = Vector2(-0.03, 0)
|
||||
shader_parameter/blend_factor = 0.5
|
||||
shader_parameter/scale1 = Vector2(1, 1)
|
||||
shader_parameter/scale2 = Vector2(1, 1)
|
||||
shader_parameter/wave_strength = 0.065
|
||||
shader_parameter/wave_scale = -0.043
|
||||
shader_parameter/pixelation_level = 2048
|
||||
shader_parameter/FoamSize = 0.385
|
||||
shader_parameter/WaterOpacity = 0.785
|
||||
shader_parameter/FoamGlowIntensity = 0.295
|
||||
shader_parameter/surfacecolour = Color(0, 0, 0, 1)
|
||||
shader_parameter/volumecolour = Color(0, 0, 0, 1)
|
||||
shader_parameter/AirIOR = 1.0
|
||||
shader_parameter/IOR = 1.33
|
||||
shader_parameter/sampler1speed = Vector2(0.02, 0)
|
||||
shader_parameter/sampler2speed = Vector2(0, 0.02)
|
||||
shader_parameter/samplermix = 0.5
|
||||
shader_parameter/samplerscale = Vector2(0.1, 0.1)
|
||||
shader_parameter/normalstrength = 1.0
|
||||
shader_parameter/heightstrength = 0.12
|
||||
shader_parameter/refrationamount = 0.0
|
||||
shader_parameter/fog_underwater = false
|
||||
shader_parameter/edge_size = 0.1
|
||||
shader_parameter/foam_or_fade = false
|
||||
shader_parameter/far_clip = 50.0
|
||||
shader_parameter/steps = 512
|
||||
shader_parameter/ssr_screen_fade = 0.05
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_b8mbh"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_v56an")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_i51wo"]
|
||||
@@ -479,7 +468,6 @@ blend_shape_mode = 0
|
||||
shadow_mesh = SubResource("ArrayMesh_i51wo")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_yyc2w"]
|
||||
shading_mode = 1
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_mj048"]
|
||||
_surfaces = [{
|
||||
@@ -516,7 +504,6 @@ resource_name = "RAILING BILLBOARD"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_k70ho")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_2uyaw"]
|
||||
@@ -643,12 +630,10 @@ shadow_mesh = SubResource("ArrayMesh_od287")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_er6pv"]
|
||||
resource_name = "CYLINDER"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_uquwp")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_a40ha"]
|
||||
resource_name = "COLUMN GREEN"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_v56an")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_6mp8p"]
|
||||
@@ -744,7 +729,6 @@ data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1,
|
||||
size = Vector3(2.97269, 5.19287, 2.8479)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n0fh8"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_koora")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -759,14 +743,11 @@ material = ExtResource("20_jum0i")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Water Room B" type="Node3D"]
|
||||
script = ExtResource("1_nwdhf")
|
||||
size_in_voxels = Vector3i(7, 1, 12)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
script = ExtResource("1_h7qp4")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Water Room B" type="Node3D" parent="Model"]
|
||||
script = ExtResource("1_h7qp4")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Water Room B"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.6973, 4.84378, 10.1488)
|
||||
@@ -990,9 +971,6 @@ material_override = SubResource("StandardMaterial3D_326gu")
|
||||
operation = 2
|
||||
size = Vector3(5.12857, 4.52417, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("18_8x0i5")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=59 format=4 uid="uid://b8tiuu3l181ke"]
|
||||
[gd_scene load_steps=57 format=4 uid="uid://b8tiuu3l181ke"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_oayuk"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_oayuk"]
|
||||
[ext_resource type="Texture2D" uid="uid://bnw5y7olvv0lc" path="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_railing-2_billboard.png" id="3_oayuk"]
|
||||
[ext_resource type="Texture2D" uid="uid://cstjhs8n8ybld" path="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_HAND-CYCLE-FLOOR.png" id="4_djdya"]
|
||||
@@ -15,7 +14,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://0buh4j4b7hyj" path="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_WHITE_TILE2.png" id="13_j72uu"]
|
||||
[ext_resource type="Texture2D" uid="uid://cxu5653ega7m" path="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_COLUMN_WHITE.png" id="14_rf3pu"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="15_wjalf"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="16_pqxqy"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="17_xkk3c"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="18_13ygm"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="19_xb78s"]
|
||||
@@ -26,7 +24,6 @@ resource_name = "Material.017"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_oayuk")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_c5fwg"]
|
||||
@@ -98,7 +95,6 @@ resource_name = "Material"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_djdya")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_3hvyu"]
|
||||
@@ -136,24 +132,20 @@ shadow_mesh = SubResource("ArrayMesh_3hvyu")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mtbst"]
|
||||
resource_name = "Material.008"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_58wok")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_a1usx"]
|
||||
resource_name = "Material.067"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_xdips")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xrjl1"]
|
||||
resource_name = "Material.098"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_0ha5b")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2hsk1"]
|
||||
resource_name = "Material.024"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_g0ib0")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_njyd3"]
|
||||
@@ -264,22 +256,18 @@ shadow_mesh = SubResource("ArrayMesh_njyd3")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3usm6"]
|
||||
resource_name = "Material.016"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_w00e4")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m7tjm"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_0ha5b")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5p6yr"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_od5sh")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5cr47"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_7yeb6")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vmx7m"]
|
||||
@@ -287,7 +275,6 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_ywfr1")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_oec32"]
|
||||
@@ -465,7 +452,6 @@ shadow_mesh = SubResource("ArrayMesh_oec32")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_625y1"]
|
||||
resource_name = "Material.069"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_j72uu")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_few1c"]
|
||||
@@ -503,7 +489,6 @@ shadow_mesh = SubResource("ArrayMesh_few1c")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_w67s7"]
|
||||
resource_name = "Material.148"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_rf3pu")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_nhfvw"]
|
||||
@@ -547,7 +532,6 @@ data = PackedVector3Array(24.5277, -4.2459, 7.4257, 24.5277, -3.2029, 4.4836, 24
|
||||
height = 5.7417
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_swpsr"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_xb78s")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pgmhg"]
|
||||
@@ -557,7 +541,6 @@ albedo_texture = ExtResource("20_kmwt1")
|
||||
albedo_texture = ExtResource("19_xb78s")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hsirj"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_xb78s")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -565,11 +548,9 @@ texture_filter = 0
|
||||
albedo_texture = ExtResource("19_xb78s")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ikxhe"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_xb78s")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pu4tf"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_xb78s")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_w5a3p"]
|
||||
@@ -580,16 +561,11 @@ material = ExtResource("18_13ygm")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Long Room B" type="Node3D"]
|
||||
script = ExtResource("1_oayuk")
|
||||
size_in_voxels = Vector3i(12, 1, 7)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_oayuk")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Long Room B" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_oayuk")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Long Room B"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.86728, -0.806632, 2.26142)
|
||||
@@ -856,9 +832,6 @@ operation = 2
|
||||
size = Vector3(4.13257, 4.19934, 2)
|
||||
material = SubResource("StandardMaterial3D_pu4tf")
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("16_pqxqy")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=37 format=4 uid="uid://5cstpejxygy6"]
|
||||
[gd_scene load_steps=35 format=4 uid="uid://5cstpejxygy6"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_h5vd2"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_i2lux"]
|
||||
[ext_resource type="Texture2D" uid="uid://br0mmudsrjvjr" path="res://src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM_COLUMN_WHITE.png" id="3_jpe4o"]
|
||||
[ext_resource type="Texture2D" uid="uid://6ij2st3pptd0" path="res://src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM_area_2_big_tile.png" id="4_euk7n"]
|
||||
@@ -10,7 +9,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://bk38oftqvqp8o" path="res://src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM_WHITE_floor.png" id="8_h5vd2"]
|
||||
[ext_resource type="Texture2D" uid="uid://ch4vi8pr3dd01" path="res://src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM_WHITE_layer_brick1.png" id="9_3yy2v"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="15_28m48"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="16_fn8xd"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="17_7gm34"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="18_eh6mq"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="19_p6lr6"]
|
||||
@@ -18,7 +16,6 @@
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5ou2x"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_jpe4o")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -58,37 +55,31 @@ shadow_mesh = SubResource("ArrayMesh_q0gko")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kxyir"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_euk7n")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tx1hr"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_wmaqp")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6k3yj"]
|
||||
resource_name = "Material.003"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_4ad6e")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pmy6i"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_7yuos")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6r75s"]
|
||||
resource_name = "Material.006"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_h5vd2")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m0dgx"]
|
||||
resource_name = "Material.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_3yy2v")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -315,7 +306,6 @@ data = PackedVector3Array(2.4947, -0.4572, 2.8354, 3.77, -0.4572, 4.2141, 3.7707
|
||||
size = Vector3(1.49561, 4.7276, 1.23734)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_p6lr6")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -330,16 +320,11 @@ material = ExtResource("18_eh6mq")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Column Circle Room" type="Node3D"]
|
||||
script = ExtResource("1_h5vd2")
|
||||
size_in_voxels = Vector3i(5, 1, 5)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_i2lux")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="ColumnCircleRoom" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_i2lux")
|
||||
|
||||
[node name="29_A2_COLUMN_CIRCLE_ROOM" type="Node3D" parent="Model/ColumnCircleRoom"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.43295, 2.95279)
|
||||
@@ -488,9 +473,6 @@ material_override = SubResource("StandardMaterial3D_hwsho")
|
||||
operation = 2
|
||||
size = Vector3(4.33105, 4.77002, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("16_fn8xd")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=70 format=4 uid="uid://b1oayub1dt5ag"]
|
||||
[gd_scene load_steps=68 format=4 uid="uid://b1oayub1dt5ag"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_1cj2y"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_p5ha7"]
|
||||
[ext_resource type="Texture2D" uid="uid://cuwdpox6e74jo" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_COLUMN_WHITE.png" id="3_p5ha7"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7kiqxbdxj1il" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_inner_rock2.png" id="4_e2vx2"]
|
||||
@@ -17,7 +16,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://cjrjp0cgflcl3" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_STONE_PANEL_AREA2png.png" id="15_onrge"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="15_vrg0r"]
|
||||
[ext_resource type="Texture2D" uid="uid://ddst8f6d1v6f0" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_swirled_column _AREA2.png" id="16_5nlxe"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="16_8apnj"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="17_hhdfg"]
|
||||
[ext_resource type="Texture2D" uid="uid://dthln6dh62ur5" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_asdasd.png" id="17_ntssu"]
|
||||
[ext_resource type="Texture2D" uid="uid://ylv5776weyfd" path="res://src/map/dungeon/models/Set B/31. Dismantled Saint's Room/31_A2_Dismantled_Saint_Room_HAND-CYCLE-FLOOR.png" id="18_dsciu"]
|
||||
@@ -28,12 +26,10 @@
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_at5vt"]
|
||||
resource_name = "Material.006"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_p5ha7")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_36r5n"]
|
||||
resource_name = "Material.001"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_e2vx2")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_2y8gy"]
|
||||
@@ -94,7 +90,6 @@ shadow_mesh = SubResource("ArrayMesh_2y8gy")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cpqwt"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_wkwx7")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_ckyy5"]
|
||||
@@ -134,7 +129,6 @@ resource_name = "Material.008"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_oepiu")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_mbvur"]
|
||||
@@ -171,7 +165,6 @@ shadow_mesh = SubResource("ArrayMesh_mbvur")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eh5ys"]
|
||||
resource_name = "Material.010"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_kve1c")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_rs2tx"]
|
||||
@@ -213,7 +206,6 @@ resource_name = "Material.011"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_ef8nq")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -222,7 +214,6 @@ resource_name = "Material.012"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_4q071")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -231,13 +222,11 @@ resource_name = "Material.014"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_6pl10")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qs4t8"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_color = Color(0.26667, 0.39216, 0.12549, 1)
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_il7lw"]
|
||||
@@ -394,12 +383,10 @@ shadow_mesh = SubResource("ArrayMesh_i78b6")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_plo1b"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_lof18")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2hmny"]
|
||||
resource_name = "Material.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_vrg0r")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rcy1w"]
|
||||
@@ -407,7 +394,6 @@ resource_name = "Material.004"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_oepiu")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_0xgxw"]
|
||||
@@ -742,7 +728,6 @@ radius = 5.56836
|
||||
size = Vector3(4.30612, 4.44714, 3.47546)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_5nlxe")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -757,16 +742,11 @@ material = ExtResource("18_onrge")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Dismantled Saint\'s Room" type="Node3D"]
|
||||
script = ExtResource("1_1cj2y")
|
||||
size_in_voxels = Vector3i(9, 1, 5)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_p5ha7")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Dismantled Saint\'s Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_p5ha7")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Dismantled Saint\'s Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.54819, -1.212, 4.11602)
|
||||
@@ -839,9 +819,6 @@ shape = SubResource("BoxShape3D_e2vx2")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("16_8apnj")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0224749, 1.83591, -0.00639793)
|
||||
visible = false
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=116 format=4 uid="uid://cuau7xgx3rkxu"]
|
||||
[gd_scene load_steps=114 format=4 uid="uid://cuau7xgx3rkxu"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_okco6"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_orhq3"]
|
||||
[ext_resource type="Texture2D" uid="uid://vnpy5fysmsar" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_railing-2_billboard.png" id="3_orhq3"]
|
||||
[ext_resource type="Texture2D" uid="uid://cj33luyu65afs" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_area_2_tile_stained_2.png" id="4_u1ybt"]
|
||||
@@ -22,7 +21,6 @@
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="20_2ti14"]
|
||||
[ext_resource type="Texture2D" uid="uid://ccr6dmb7wns1v" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_9.png" id="20_wjhqq"]
|
||||
[ext_resource type="Texture2D" uid="uid://c47i6pjci71bl" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_4.png" id="21_7hh2d"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="21_kw8te"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="22_38uoi"]
|
||||
[ext_resource type="Texture2D" uid="uid://3u6wrp713qe8" path="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_5.png" id="22_63u4l"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="23_2pga2"]
|
||||
@@ -38,7 +36,6 @@ resource_name = "Material.017"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_orhq3")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_awhqs"]
|
||||
@@ -76,13 +73,11 @@ shadow_mesh = SubResource("ArrayMesh_awhqs")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pwp28"]
|
||||
resource_name = "Material.067"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_u1ybt")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_echx1"]
|
||||
resource_name = "Material.010"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_ncyu1")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -147,14 +142,12 @@ resource_name = "Material.001"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_a1yx5")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5vakt"]
|
||||
resource_name = "Material.148"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_6a84v")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -323,7 +316,6 @@ shadow_mesh = SubResource("ArrayMesh_1my4n")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u1glc"]
|
||||
resource_name = "Material.098"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_tyd88")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -363,7 +355,6 @@ shadow_mesh = SubResource("ArrayMesh_yo8ot")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3oigb"]
|
||||
resource_name = "Material.011"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_pvt80")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -402,7 +393,6 @@ shadow_mesh = SubResource("ArrayMesh_3rngh")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lfcj8"]
|
||||
resource_name = "Material.069"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_re7os")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -445,7 +435,6 @@ resource_name = "Material.013"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_orhq3")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -454,7 +443,6 @@ resource_name = "Material.014"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_orhq3")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -514,7 +502,6 @@ shadow_mesh = SubResource("ArrayMesh_t0uud")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_yjkd0"]
|
||||
resource_name = "Material.012"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_g577e")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_34pqq"]
|
||||
@@ -554,13 +541,11 @@ shadow_mesh = SubResource("ArrayMesh_34pqq")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nxw0p"]
|
||||
resource_name = "Material.008"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_ehpfl")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3i1ri"]
|
||||
resource_name = "Material.024"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_lestk")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -694,25 +679,21 @@ shadow_mesh = SubResource("ArrayMesh_dtvbk")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5sdy6"]
|
||||
resource_name = "Material.016"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_x1cc4")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nb6up"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_tyd88")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xxvq7"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_xcud0")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u07b4"]
|
||||
resource_name = "Material.022"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_2ti14")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -721,7 +702,6 @@ resource_name = "Material.023"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_kw8te")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -967,7 +947,6 @@ shadow_mesh = SubResource("ArrayMesh_ar23v")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_40ilh"]
|
||||
resource_name = "Material.006"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("18_38uoi")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -1005,7 +984,6 @@ shadow_mesh = SubResource("ArrayMesh_0h08d")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_opbss"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_2pga2")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -1046,7 +1024,6 @@ resource_name = "Material.015"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("20_wjhqq")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_6bfkp"]
|
||||
@@ -1083,7 +1060,6 @@ shadow_mesh = SubResource("ArrayMesh_6bfkp")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_l367l"]
|
||||
resource_name = "Material.003"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_7hh2d")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -1121,7 +1097,6 @@ shadow_mesh = SubResource("ArrayMesh_rfss8")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x68wb"]
|
||||
resource_name = "Material.009"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_63u4l")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_n1qnq"]
|
||||
@@ -1158,7 +1133,6 @@ shadow_mesh = SubResource("ArrayMesh_n1qnq")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_84p4j"]
|
||||
resource_name = "Material.018"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("23_tys24")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_qtjxc"]
|
||||
@@ -1198,7 +1172,6 @@ resource_name = "Material.007"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("24_dkare")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_7p50c"]
|
||||
@@ -1235,7 +1208,6 @@ shadow_mesh = SubResource("ArrayMesh_7p50c")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wv0w6"]
|
||||
resource_name = "Material.019"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("25_nv2ap")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -1300,7 +1272,6 @@ size = Vector3(1.41217, 3.98596, 1.39063)
|
||||
size = Vector3(1.35815, 5.27942, 8.62299)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("24_wjhqq")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -1315,16 +1286,11 @@ material = ExtResource("23_2pga2")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Proscenium\'s Room" type="Node3D"]
|
||||
script = ExtResource("1_okco6")
|
||||
size_in_voxels = Vector3i(9, 1, 7)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_orhq3")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Proscenium\'s Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_orhq3")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Proscenium\'s Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.65285, 0.790657, 9.22067)
|
||||
@@ -1547,9 +1513,6 @@ material_override = SubResource("StandardMaterial3D_hwsho")
|
||||
operation = 2
|
||||
size = Vector3(5.09671, 4.3667, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("21_kw8te")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=86 format=4 uid="uid://b6akxaacr8jd2"]
|
||||
[gd_scene load_steps=84 format=4 uid="uid://b6akxaacr8jd2"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_npoll"]
|
||||
[ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_npoll"]
|
||||
[ext_resource type="Texture2D" uid="uid://dbxdkpbwg8f13" path="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA_2_MAIN_STONE.png" id="3_nphlp"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwe37uv2083uo" path="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_STUCCO_DECAL_BIG.png" id="4_jl6wt"]
|
||||
@@ -18,7 +17,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://bsfrcb2c8hufq" path="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_lime_hand_relief.png" id="16_xyj5q"]
|
||||
[ext_resource type="Texture2D" uid="uid://bciqtw2hjiu67" path="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_mother_GREEN.png" id="17_3r15v"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="18_xdj0s"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="19_57wht"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="20_w5hnw"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="21_0e67e"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="22_fbhft"]
|
||||
@@ -27,17 +25,14 @@
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_id5qy"]
|
||||
resource_name = "Material.002"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_nphlp")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jmqnt"]
|
||||
resource_name = "Material.008"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_jl6wt")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3prwq"]
|
||||
resource_name = "Material.009"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_ys2r4")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_vsqnl"]
|
||||
@@ -156,19 +151,16 @@ shadow_mesh = SubResource("ArrayMesh_t42qm")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rnuln"]
|
||||
resource_name = "Material.005"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_7veuw")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lfykj"]
|
||||
resource_name = "Material.003"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_i11yt")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xlpg1"]
|
||||
resource_name = "Material.004"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("8_gjefa")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -275,7 +267,6 @@ shadow_mesh = SubResource("ArrayMesh_07c5f")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4lthw"]
|
||||
resource_name = "Material.152"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_nphlp")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -315,7 +306,6 @@ shadow_mesh = SubResource("ArrayMesh_ascnh")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_knx1e"]
|
||||
resource_name = "Material.168"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("9_ouo0b")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -392,7 +382,6 @@ resource_name = "Material.007"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("10_2kqoi")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -527,7 +516,6 @@ shadow_mesh = SubResource("ArrayMesh_qj5hl")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4r7td"]
|
||||
resource_name = "Material.006"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("11_atbit")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -567,7 +555,6 @@ shadow_mesh = SubResource("ArrayMesh_26eg3")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lmvtm"]
|
||||
resource_name = "Material"
|
||||
shading_mode = 1
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_vpx55"]
|
||||
_surfaces = [{
|
||||
@@ -604,17 +591,14 @@ shadow_mesh = SubResource("ArrayMesh_vpx55")
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bunvw"]
|
||||
resource_name = "Material.092"
|
||||
transparency = 4
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("12_sa7ll")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r4gik"]
|
||||
resource_name = "Material.001"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("13_evonw")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nx42h"]
|
||||
resource_name = "Material.010"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("14_xfk21")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -760,13 +744,11 @@ shadow_mesh = SubResource("ArrayMesh_4804g")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u04k1"]
|
||||
resource_name = "Material.173"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("15_ey3fa")
|
||||
texture_filter = 2
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6dws7"]
|
||||
resource_name = "Material.174"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("16_xyj5q")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -775,7 +757,6 @@ resource_name = "Material.175"
|
||||
transparency = 2
|
||||
alpha_scissor_threshold = 0.5
|
||||
alpha_antialiasing_mode = 0
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("17_3r15v")
|
||||
texture_filter = 2
|
||||
|
||||
@@ -930,7 +911,6 @@ radius = 2.65576
|
||||
size = Vector3(3.77737, 12.4674, 7.50493)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dhety"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("22_fbhft")
|
||||
texture_filter = 0
|
||||
|
||||
@@ -945,16 +925,11 @@ material = ExtResource("21_0e67e")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Puer\'s Room" type="Node3D"]
|
||||
script = ExtResource("1_npoll")
|
||||
size_in_voxels = Vector3i(9, 1, 9)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 2
|
||||
script = ExtResource("2_npoll")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="Puer\'s Room" type="Node3D" parent="Model"]
|
||||
script = ExtResource("2_npoll")
|
||||
|
||||
[node name="Model" type="Node3D" parent="Model/Puer\'s Room"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0160885, 3.86484, 7.25485)
|
||||
@@ -1240,9 +1215,6 @@ material_override = SubResource("StandardMaterial3D_hwsho")
|
||||
operation = 2
|
||||
size = Vector3(4.80719, 4.20605, 2)
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("19_57wht")
|
||||
|
||||
[node name="Spawn Points" type="Node3D" parent="."]
|
||||
|
||||
[node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[gd_scene load_steps=98 format=4 uid="uid://bo20ffw2ygbks"]
|
||||
[gd_scene load_steps=102 format=4 uid="uid://bo20ffw2ygbks"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_7wym6"]
|
||||
[ext_resource type="Texture2D" uid="uid://ddrvsy7psmwig" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/GoG Room mirrored_DARKER_STONE_AREA_2.png" id="2_jbyuo"]
|
||||
@@ -15,7 +15,11 @@
|
||||
[ext_resource type="Texture2D" uid="uid://dd1jvmfs1cbbg" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/GoG Room mirrored_floral_single_tile.jpg" id="13_aytwf"]
|
||||
[ext_resource type="Texture2D" uid="uid://nvg6i8gbgqjv" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/GoG Room mirrored_angkor_mural.jpg" id="14_tf4w3"]
|
||||
[ext_resource type="Texture2D" uid="uid://3w1ac5fvks5v" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/GoG Room mirrored_area_2_big_tile.png" id="15_nduur"]
|
||||
[ext_resource type="Shader" uid="uid://beg8sp6kw66w8" path="res://src/map/map shaders/GOGROOM Water.gdshader" id="16_q4do2"]
|
||||
[ext_resource type="Shader" path="res://src/map/map shaders/GOGROOM Water.gdshader" id="16_q4do2"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="17_j4ho3"]
|
||||
[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="18_qt11j"]
|
||||
[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="19_tkf4r"]
|
||||
[ext_resource type="PackedScene" uid="uid://cvk007twac22c" path="res://src/enemy/enemy_types/03. filth_eater/FilthEater.tscn" id="20_fs8fd"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_q1ixl"]
|
||||
resource_name = "Material.014"
|
||||
@@ -1076,3 +1080,8 @@ transform = Transform3D(230, 0, 0, 0, 230, 0, 0, 0, 230, 0, -4.49359, 0)
|
||||
mesh = SubResource("PlaneMesh_slalf")
|
||||
skeleton = NodePath("../Model/GoG Room mirrored")
|
||||
surface_material_override/0 = SubResource("ShaderMaterial_savej")
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("17_j4ho3")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("18_qt11j"), ExtResource("19_tkf4r"), ExtResource("20_fs8fd")])
|
||||
SpawnRate = PackedFloat32Array(0.5, 1, 1)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=43 format=4 uid="uid://dooy8nc5pgaxm"]
|
||||
[gd_scene load_steps=42 format=4 uid="uid://dooy8nc5pgaxm"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="1_71ggh"]
|
||||
[ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="2_5ibpy"]
|
||||
[ext_resource type="Texture2D" uid="uid://cn0xqpblr7n4u" path="res://src/map/dungeon/models/Set B/37. Corridor B/37_A2_CORRIDOR_B_COLUMN_WHITE.png" id="2_ijgu6"]
|
||||
[ext_resource type="Texture2D" uid="uid://byubpdnlpys1g" path="res://src/map/dungeon/models/Set B/37. Corridor B/37_A2_CORRIDOR_B_AREA_2_MAIN_222STONE.png" id="3_nbkbi"]
|
||||
@@ -13,17 +12,14 @@
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_l2f0d"]
|
||||
resource_name = "Material.014"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("2_ijgu6")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xxxok"]
|
||||
resource_name = "Material.015"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("3_nbkbi")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jej4e"]
|
||||
resource_name = "CEILNG.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("4_05q7p")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_sgiro"]
|
||||
@@ -108,12 +104,10 @@ shadow_mesh = SubResource("ArrayMesh_sgiro")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8fh0t"]
|
||||
resource_name = "WALL.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("5_lolyr")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51wvk"]
|
||||
resource_name = "FLOOR.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("6_lsept")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_equu1"]
|
||||
@@ -441,7 +435,6 @@ albedo_color = Color(1, 1, 1, 0)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ix6wn"]
|
||||
resource_name = "BOTTOM TRIM.007"
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("7_sx4i6")
|
||||
|
||||
[sub_resource type="ArrayMesh" id="ArrayMesh_jtq5r"]
|
||||
@@ -680,14 +673,12 @@ material = ExtResource("10_7c8qf")
|
||||
size = Vector2(4, 4)
|
||||
|
||||
[node name="Corridor" type="Node3D"]
|
||||
script = ExtResource("1_71ggh")
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
script = ExtResource("2_5ibpy")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
|
||||
[node name="37_A2_CORRIDOR_B" type="Node3D" parent="Model"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.0203, -1.96873, -0.90789)
|
||||
script = ExtResource("2_5ibpy")
|
||||
|
||||
[node name="CB_COLUMN_001" type="MeshInstance3D" parent="Model/37_A2_CORRIDOR_B"]
|
||||
transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=56 format=4 uid="uid://02v033xrh6xi"]
|
||||
[gd_scene load_steps=54 format=4 uid="uid://02v033xrh6xi"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_sofp0"]
|
||||
[ext_resource type="Script" uid="uid://bd824eigybu51" path="res://src/map/dungeon/code/ExitRoom.cs" id="2_7o05s"]
|
||||
[ext_resource type="Texture2D" uid="uid://c0ilimt6tnd4t" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area_2_tile_3.png" id="3_tnx8b"]
|
||||
[ext_resource type="Texture2D" uid="uid://vwajohccffv" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA2.png" id="4_rs16x"]
|
||||
@@ -21,7 +20,6 @@
|
||||
[ext_resource type="Texture2D" uid="uid://chqxcfjjergls" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_inner_rock2.png" id="18_xqxm8"]
|
||||
[ext_resource type="Texture2D" uid="uid://6543whim3g5" path="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_inner_rock_3.png" id="19_lfgps"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="19_p23g3"]
|
||||
[ext_resource type="Script" uid="uid://yl7wyeo5m725" path="res://src/map/dungeon/code/remove_unused_doors.gd" id="20_ir6hy"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvast710lxrmw" path="res://src/map/dungeon/door/A2_BLOCKED_DOOR.png" id="21_7o05s"]
|
||||
[ext_resource type="Script" uid="uid://c6s8hvdj3u3aq" path="res://src/map/dungeon/code/MinimapManager.cs" id="21_ux8yt"]
|
||||
[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="22_twkyh"]
|
||||
@@ -527,16 +525,13 @@ radius = 1.40381
|
||||
size = Vector3(1.31396, 11.3767, 3.75488)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51rrf"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("21_7o05s")
|
||||
texture_filter = 0
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_alrge"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_p23g3")
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x3ul8"]
|
||||
shading_mode = 1
|
||||
albedo_texture = ExtResource("19_p23g3")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_7o05s"]
|
||||
@@ -550,14 +545,9 @@ material = ExtResource("22_twkyh")
|
||||
size = Vector2(20, 16)
|
||||
|
||||
[node name="Floor Exit B" type="Node3D"]
|
||||
script = ExtResource("1_sofp0")
|
||||
size_in_voxels = Vector3i(5, 1, 9)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
min_count = 1
|
||||
max_count = 3
|
||||
script = ExtResource("2_7o05s")
|
||||
|
||||
[node name="Model" type="Node3D" parent="."]
|
||||
script = ExtResource("2_7o05s")
|
||||
|
||||
[node name="Floor Exit B" type="Node3D" parent="Model"]
|
||||
unique_name_in_owner = true
|
||||
@@ -612,9 +602,6 @@ shape = SubResource("BoxShape3D_bracd")
|
||||
|
||||
[node name="Doors" type="Node3D" parent="."]
|
||||
|
||||
[node name="RemoveUnusedDoors" type="Node" parent="Doors"]
|
||||
script = ExtResource("20_ir6hy")
|
||||
|
||||
[node name="CSGBox3D" type="CSGBox3D" parent="Doors"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0314088, 4.23029, -0.0385468)
|
||||
visible = false
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
[gd_scene load_steps=87 format=4 uid="uid://jha0mhct0e7i"]
|
||||
[gd_scene load_steps=92 format=4 uid="uid://jha0mhct0e7i"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_qlntn"]
|
||||
[ext_resource type="Texture2D" uid="uid://ddrvsy7psmwig" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/GoG Room mirrored_DARKER_STONE_AREA_2.png" id="2_nk06r"]
|
||||
@@ -13,9 +13,14 @@
|
||||
[ext_resource type="Texture2D" uid="uid://cacij2icygje2" path="res://src/map/dungeon/models/Set B/40/Floor - ALT Goddess of Guidance mirrored_DARKER_STONE_AREA_2.png" id="13_qlntn"]
|
||||
[ext_resource type="Texture2D" uid="uid://dd1jvmfs1cbbg" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/GoG Room mirrored_floral_single_tile.jpg" id="13_qvgr0"]
|
||||
[ext_resource type="Texture2D" uid="uid://nvg6i8gbgqjv" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/GoG Room mirrored_angkor_mural.jpg" id="14_357qs"]
|
||||
[ext_resource type="Shader" uid="uid://diblrwarabp25" path="res://src/map/map shaders/gog spectral.gdshader" id="14_nk06r"]
|
||||
[ext_resource type="Shader" uid="uid://c15ggsq72vcra" path="res://src/map/map shaders/spectreweapons.gdshader" id="15_aspfl"]
|
||||
[ext_resource type="Shader" uid="uid://beg8sp6kw66w8" path="res://src/map/map shaders/GOGROOM Water.gdshader" id="16_qgq3i"]
|
||||
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="14_c8nq0"]
|
||||
[ext_resource type="Shader" path="res://src/map/map shaders/gog spectral.gdshader" id="14_nk06r"]
|
||||
[ext_resource type="Shader" path="res://src/map/map shaders/spectreweapons.gdshader" id="15_aspfl"]
|
||||
[ext_resource type="Shader" path="res://src/map/map shaders/GOGROOM Water.gdshader" id="16_qgq3i"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="17_vqdg0"]
|
||||
[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="18_c8nq0"]
|
||||
[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="19_5bm60"]
|
||||
[ext_resource type="PackedScene" uid="uid://cvk007twac22c" path="res://src/enemy/enemy_types/03. filth_eater/FilthEater.tscn" id="20_q7u05"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_q1ixl"]
|
||||
resource_name = "Material.014"
|
||||
@@ -966,6 +971,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -66.2332)
|
||||
unique_name_in_owner = true
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.87173, -1.37707, 2.25211)
|
||||
|
||||
[node name="ItemDatabase" parent="Spawn Points" instance=ExtResource("14_c8nq0")]
|
||||
unique_name_in_owner = true
|
||||
|
||||
[node name="ItemSpawnPoint" type="Marker3D" parent="Spawn Points"]
|
||||
unique_name_in_owner = true
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -108.001, -2.05432, 2.0026)
|
||||
|
||||
[node name="Room" type="Node3D" parent="."]
|
||||
|
||||
[node name="Minimap" type="Node3D" parent="."]
|
||||
@@ -1033,3 +1045,8 @@ transform = Transform3D(230, 0, 0, 0, 230, 0, 0, 0, 230, 0, -2.98516, 0)
|
||||
mesh = SubResource("PlaneMesh_slalf")
|
||||
skeleton = NodePath("../Model/GoG Room mirrored")
|
||||
surface_material_override/0 = SubResource("ShaderMaterial_savej")
|
||||
|
||||
[node name="EnemyDatabase" parent="." instance=ExtResource("17_vqdg0")]
|
||||
unique_name_in_owner = true
|
||||
EnemyList = Array[PackedScene]([ExtResource("18_c8nq0"), ExtResource("19_5bm60"), ExtResource("20_q7u05")])
|
||||
SpawnRate = PackedFloat32Array(0.5, 1, 1)
|
||||
|
||||
Reference in New Issue
Block a user