Compare commits

...

2 Commits

Author SHA1 Message Date
Pal
3e178257aa merger 2026-02-01 05:03:10 -08:00
Pal
25b6d53ec4 Minimap added to all floors, all minimaps added and refined.
Less overlap neccessary for revealer cubes
2026-02-01 05:02:15 -08:00
70 changed files with 2497 additions and 344 deletions

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=12 format=3 uid="uid://d1jfmmhdjqktq"] [gd_scene load_steps=18 format=3 uid="uid://d1jfmmhdjqktq"]
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="1_52jyt"] [ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="1_52jyt"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_k4vyx"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_k4vyx"]
@@ -11,6 +11,56 @@
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="8_8y1dv"] [ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="8_8y1dv"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="9_qh6n2"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="9_qh6n2"]
[ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="11_ve300"] [ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="11_ve300"]
[ext_resource type="Texture2D" uid="uid://ccy4w4bcgo2v" path="res://src/minimap/Floor Maps/1B.png" id="12_gvv3a"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_denx7"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("12_gvv3a")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_wji58"]
material = SubResource("StandardMaterial3D_denx7")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor1b" type="Node3D"] [node name="Floor1b" type="Node3D"]
script = ExtResource("1_k4vyx") script = ExtResource("1_k4vyx")
@@ -53,3 +103,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -59.9942, -0.0174925, 27.8728
[node name="Node3D8" parent="." instance=ExtResource("11_ve300")] [node name="Node3D8" parent="." instance=ExtResource("11_ve300")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -59.9126, 0.0301168, 12.1208) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -59.9126, 0.0301168, 12.1208)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -28.017, 0.373, 36.8768)
mesh = SubResource("PlaneMesh_wji58")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=12 format=3 uid="uid://dcxbyels7w0oa"] [gd_scene load_steps=17 format=3 uid="uid://dcxbyels7w0oa"]
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="1_crtd2"] [ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="1_crtd2"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ndvnk"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ndvnk"]
@@ -7,10 +7,59 @@
[ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="5_vrrsb"] [ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="5_vrrsb"]
[ext_resource type="PackedScene" uid="uid://dv6umo0bmlyyj" path="res://src/map/dungeon/rooms/Set A/01. Small Block A1.tscn" id="6_cqa8w"] [ext_resource type="PackedScene" uid="uid://dv6umo0bmlyyj" path="res://src/map/dungeon/rooms/Set A/01. Small Block A1.tscn" id="6_cqa8w"]
[ext_resource type="PackedScene" uid="uid://dfjc54vc4yc45" path="res://src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn" id="7_54mxl"] [ext_resource type="PackedScene" uid="uid://dfjc54vc4yc45" path="res://src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn" id="7_54mxl"]
[ext_resource type="PackedScene" uid="uid://dlrd6vvwaqq3n" path="res://src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn" id="8_a5tiv"]
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="8_mm2su"] [ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="8_mm2su"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="9_x2uvf"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="9_x2uvf"]
[ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="11_7ykih"] [ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="11_7ykih"]
[ext_resource type="Texture2D" uid="uid://bpbqjki8j3bru" path="res://src/minimap/Floor Maps/1C.png" id="11_7ysko"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cqa8w"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("11_7ysko")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_54mxl"]
material = SubResource("StandardMaterial3D_cqa8w")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor1c" type="Node3D"] [node name="Floor1c" type="Node3D"]
script = ExtResource("1_ndvnk") script = ExtResource("1_ndvnk")
@@ -22,7 +71,7 @@ transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, -27.9429, 0, -4.39086)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 4, 2.00561, 33.9984) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 4, 2.00561, 33.9984)
[node name="BasinRoom" parent="." instance=ExtResource("8_mm2su")] [node name="BasinRoom" parent="." instance=ExtResource("8_mm2su")]
transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 37.9683, -0.0379416, 34.0224) transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 33.9683, -0.0379416, 34.0224)
[node name="Antechamber B" parent="." instance=ExtResource("3_g0wcu")] [node name="Antechamber B" parent="." instance=ExtResource("3_g0wcu")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -37.9453, -0.0433989, 60) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -37.9453, -0.0433989, 60)
@@ -33,9 +82,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -28, 0, 34.02)
[node name="CA1_2BLOCK" parent="." instance=ExtResource("7_54mxl")] [node name="CA1_2BLOCK" parent="." instance=ExtResource("7_54mxl")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 36) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 36)
[node name="CA1_3BLOCK" parent="." instance=ExtResource("8_a5tiv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 36)
[node name="CA1_4BLOCK" parent="." instance=ExtResource("5_vrrsb")] [node name="CA1_4BLOCK" parent="." instance=ExtResource("5_vrrsb")]
transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -30, -0.0152941, 44) transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -30, -0.0152941, 44)
@@ -53,3 +99,16 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -9.909
[node name="Node3D5" parent="." instance=ExtResource("9_x2uvf")] [node name="Node3D5" parent="." instance=ExtResource("9_x2uvf")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -35.2776, 0.00105417, 33.9955) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -35.2776, 0.00105417, 33.9955)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22.0145, 0.373, 49.5146)
mesh = SubResource("PlaneMesh_54mxl")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"
[node name="CA1_2BLOCK2" parent="." instance=ExtResource("7_54mxl")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 36)

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://ddsxmkmh6r06e"] [gd_scene load_steps=22 format=3 uid="uid://ddsxmkmh6r06e"]
[ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="1_aqxvl"] [ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="1_aqxvl"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_jchqd"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_jchqd"]
@@ -15,6 +15,56 @@
[ext_resource type="PackedScene" uid="uid://b8u3sfhexlhfu" path="res://src/map/dungeon/rooms/Set A/Circle Room.tscn" id="12_u3sjh"] [ext_resource type="PackedScene" uid="uid://b8u3sfhexlhfu" path="res://src/map/dungeon/rooms/Set A/Circle Room.tscn" id="12_u3sjh"]
[ext_resource type="PackedScene" uid="uid://dhkbvos11tkdw" path="res://src/map/dungeon/rooms/Set A/12. Jump Scare Room.tscn" id="12_v4r8m"] [ext_resource type="PackedScene" uid="uid://dhkbvos11tkdw" path="res://src/map/dungeon/rooms/Set A/12. Jump Scare Room.tscn" id="12_v4r8m"]
[ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="15_rmfig"] [ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="15_rmfig"]
[ext_resource type="Texture2D" uid="uid://35c2nojcnnl" path="res://src/minimap/Floor Maps/2A.png" id="16_rmfig"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ru10l"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_rmfig")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_5v5l6"]
material = SubResource("StandardMaterial3D_ru10l")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor2a" type="Node3D"] [node name="Floor2a" type="Node3D"]
script = ExtResource("1_jchqd") script = ExtResource("1_jchqd")
@@ -114,3 +164,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.0298, 0.0294389, -12.0652)
[node name="Node3D15" parent="." instance=ExtResource("15_rmfig")] [node name="Node3D15" parent="." instance=ExtResource("15_rmfig")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -49.0813, 0.0171744, 4.04785) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -49.0813, 0.0171744, 4.04785)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.81506, 0.373, -3.07342)
mesh = SubResource("PlaneMesh_5v5l6")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=11 format=3 uid="uid://c36lo1h1xyacy"] [gd_scene load_steps=17 format=3 uid="uid://c36lo1h1xyacy"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_2ryrq"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_2ryrq"]
[ext_resource type="PackedScene" uid="uid://tpgwccr6v43e" path="res://src/map/dungeon/rooms/Set A/04. Tree Antechamber.tscn" id="1_lxs4h"] [ext_resource type="PackedScene" uid="uid://tpgwccr6v43e" path="res://src/map/dungeon/rooms/Set A/04. Tree Antechamber.tscn" id="1_lxs4h"]
@@ -10,6 +10,56 @@
[ext_resource type="PackedScene" uid="uid://dlrd6vvwaqq3n" path="res://src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn" id="7_5wxoe"] [ext_resource type="PackedScene" uid="uid://dlrd6vvwaqq3n" path="res://src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn" id="7_5wxoe"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="8_txfg1"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="8_txfg1"]
[ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="9_481xk"] [ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="9_481xk"]
[ext_resource type="Texture2D" uid="uid://dbdnwnox0enh" path="res://src/minimap/Floor Maps/2B.png" id="11_7eqoi"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_uxj8x"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("11_7eqoi")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_7j2in"]
material = SubResource("StandardMaterial3D_uxj8x")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor2b" type="Node3D"] [node name="Floor2b" type="Node3D"]
script = ExtResource("1_2ryrq") script = ExtResource("1_2ryrq")
@@ -33,13 +83,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 36, 0, 9.96674)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 96, 0, -10.2736) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 96, 0, -10.2736)
[node name="Node3D5" parent="." instance=ExtResource("8_txfg1")] [node name="Node3D5" parent="." instance=ExtResource("8_txfg1")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 48.5964, 0, -19.9421) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 49.6126, 0, -19.9421)
[node name="Node3D6" parent="." instance=ExtResource("8_txfg1")] [node name="Node3D6" parent="." instance=ExtResource("8_txfg1")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, -28.7301) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, -26.8596)
[node name="Node3D7" parent="." instance=ExtResource("8_txfg1")] [node name="Node3D7" parent="." instance=ExtResource("8_txfg1")]
transform = Transform3D(1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, 61.997, 0, 18) transform = Transform3D(1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, 61.997, 0, 13.7044)
[node name="Node3D8" parent="." instance=ExtResource("8_txfg1")] [node name="Node3D8" parent="." instance=ExtResource("8_txfg1")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 74.8347, 0, 7.95024) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 74.8347, 0, 7.95024)
@@ -58,3 +108,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 76, 0, -18)
[node name="Long Room" parent="." instance=ExtResource("6_c1exe")] [node name="Long Room" parent="." instance=ExtResource("6_c1exe")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 62, 0, -4.495) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 62, 0, -4.495)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 77.1591, 0.373, -6.01604)
mesh = SubResource("PlaneMesh_7j2in")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://bej5jf18omtgy"] [gd_scene load_steps=22 format=3 uid="uid://bej5jf18omtgy"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_j6057"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_j6057"]
[ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="2_bc3p8"] [ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="2_bc3p8"]
@@ -15,6 +15,56 @@
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="13_jq4sm"] [ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="13_jq4sm"]
[ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="14_3u4mu"] [ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="14_3u4mu"]
[ext_resource type="PackedScene" uid="uid://dfjc54vc4yc45" path="res://src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn" id="14_rd1m6"] [ext_resource type="PackedScene" uid="uid://dfjc54vc4yc45" path="res://src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn" id="14_rd1m6"]
[ext_resource type="Texture2D" uid="uid://yhm05a5svy4s" path="res://src/minimap/Floor Maps/2C.png" id="16_bc3p8"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8a320"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_bc3p8")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_gw6gx"]
material = SubResource("StandardMaterial3D_8a320")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor2a" type="Node3D"] [node name="Floor2a" type="Node3D"]
script = ExtResource("1_j6057") script = ExtResource("1_j6057")
@@ -90,3 +140,13 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 73.156
[node name="Node3D5" parent="." instance=ExtResource("10_lsi42")] [node name="Node3D5" parent="." instance=ExtResource("10_lsi42")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 63, 0, -34) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 63, 0, -34)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.9476, 0.373, 36.4698)
mesh = SubResource("PlaneMesh_gw6gx")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://gsaq7slihkl"] [gd_scene load_steps=22 format=3 uid="uid://gsaq7slihkl"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_x62lg"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_x62lg"]
[ext_resource type="PackedScene" uid="uid://c5eon2dk4ojua" path="res://src/map/dungeon/rooms/Set A/14. Ran's Room.tscn" id="2_c3od5"] [ext_resource type="PackedScene" uid="uid://c5eon2dk4ojua" path="res://src/map/dungeon/rooms/Set A/14. Ran's Room.tscn" id="2_c3od5"]
@@ -15,6 +15,56 @@
[ext_resource type="PackedScene" uid="uid://dgimg6s6w3xxd" path="res://src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn" id="11_r6ylu"] [ext_resource type="PackedScene" uid="uid://dgimg6s6w3xxd" path="res://src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn" id="11_r6ylu"]
[ext_resource type="PackedScene" uid="uid://8u5kue6pljh0" path="res://src/map/dungeon/corridors/A1 - Corridor - Z-Block.tscn" id="13_oagmk"] [ext_resource type="PackedScene" uid="uid://8u5kue6pljh0" path="res://src/map/dungeon/corridors/A1 - Corridor - Z-Block.tscn" id="13_oagmk"]
[ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="14_1x7e5"] [ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="14_1x7e5"]
[ext_resource type="Texture2D" uid="uid://ch36d3i1xdbyj" path="res://src/minimap/Floor Maps/3A.png" id="16_dfm8b"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_v44t5"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_dfm8b")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_ckihq"]
material = SubResource("StandardMaterial3D_v44t5")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor3a" type="Node3D"] [node name="Floor3a" type="Node3D"]
script = ExtResource("1_x62lg") script = ExtResource("1_x62lg")
@@ -111,3 +161,13 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 43.18,
[node name="Node3D7" parent="." instance=ExtResource("9_ad7y3")] [node name="Node3D7" parent="." instance=ExtResource("9_ad7y3")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -48.4658, 0, 17.9486) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -48.4658, 0, 17.9486)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.3474, 0.373, -36.0745)
mesh = SubResource("PlaneMesh_ckihq")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://pc01b6ce183r"] [gd_scene load_steps=22 format=3 uid="uid://pc01b6ce183r"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_pbqy2"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_pbqy2"]
[ext_resource type="PackedScene" uid="uid://c5eon2dk4ojua" path="res://src/map/dungeon/rooms/Set A/14. Ran's Room.tscn" id="2_ry1wj"] [ext_resource type="PackedScene" uid="uid://c5eon2dk4ojua" path="res://src/map/dungeon/rooms/Set A/14. Ran's Room.tscn" id="2_ry1wj"]
@@ -15,6 +15,56 @@
[ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="13_lx7lx"] [ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="13_lx7lx"]
[ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="14_qmbob"] [ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="14_qmbob"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="15_ykl6d"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="15_ykl6d"]
[ext_resource type="Texture2D" uid="uid://bu7pkisin620c" path="res://src/minimap/Floor Maps/3B.png" id="16_ry1wj"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_l5hts"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_ry1wj")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_ferpc"]
material = SubResource("StandardMaterial3D_l5hts")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor3a" type="Node3D"] [node name="Floor3a" type="Node3D"]
script = ExtResource("1_pbqy2") script = ExtResource("1_pbqy2")
@@ -81,3 +131,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.00045, 0, 53)
[node name="Node3D3" parent="." instance=ExtResource("15_ykl6d")] [node name="Node3D3" parent="." instance=ExtResource("15_ykl6d")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -42.0005, 0, 46) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -42.0005, 0, 46)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.88379, 0.373, 10.9144)
mesh = SubResource("PlaneMesh_ferpc")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://y85tb64e2mrr"] [gd_scene load_steps=22 format=3 uid="uid://y85tb64e2mrr"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_guw1g"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_guw1g"]
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="2_5ieds"] [ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="2_5ieds"]
@@ -15,12 +15,62 @@
[ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="14_h8iwc"] [ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="14_h8iwc"]
[ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="14_q0osc"] [ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="14_q0osc"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="15_rdx86"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="15_rdx86"]
[ext_resource type="Texture2D" uid="uid://bar41y16e1ad6" path="res://src/minimap/Floor Maps/3C.png" id="16_5ieds"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_q0osc"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_5ieds")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_2edmy"]
material = SubResource("StandardMaterial3D_q0osc")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor3a" type="Node3D"] [node name="Floor3a" type="Node3D"]
script = ExtResource("1_guw1g") script = ExtResource("1_guw1g")
[node name="Floor Exit A" parent="." instance=ExtResource("2_5ieds")] [node name="Floor Exit A" parent="." instance=ExtResource("2_5ieds")]
transform = Transform3D(-2, 0, 1.74846e-07, 0, 2, 0, -1.74846e-07, 0, -2, -42.765, -0.0371113, 40.5067) transform = Transform3D(-2, 0, 1.74846e-07, 0, 2, 0, -1.74846e-07, 0, -2, -42.765, -0.0371113, 44.5067)
[node name="RansRoom" parent="." instance=ExtResource("4_2edmy")] [node name="RansRoom" parent="." instance=ExtResource("4_2edmy")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -6.94756, -0.0178914, -17.8975) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -6.94756, -0.0178914, -17.8975)
@@ -29,52 +79,46 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -6.947
transform = Transform3D(1, 0, -2.98023e-08, 0, 1, 0, 2.98023e-08, 0, 1, -36.8035, 0, -4) transform = Transform3D(1, 0, -2.98023e-08, 0, 1, 0, 2.98023e-08, 0, 1, -36.8035, 0, -4)
[node name="CA1_TBLOCK" parent="." instance=ExtResource("10_3jr52")] [node name="CA1_TBLOCK" parent="." instance=ExtResource("10_3jr52")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 22.9428, 0, -20) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 18.9428, 0, -20)
[node name="CA1_2BLOCK3" parent="." instance=ExtResource("3_q0osc")] [node name="CA1_2BLOCK3" parent="." instance=ExtResource("3_q0osc")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 26.9428, 0, -12) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 22.9428, 0, -12)
[node name="CA1_4BLOCK" parent="." instance=ExtResource("13_kfvud")] [node name="CA1_4BLOCK" parent="." instance=ExtResource("13_kfvud")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -24.8158, 0, 11.9757) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -24.8158, 0, 15.9757)
[node name="Statue Room" parent="." instance=ExtResource("5_ytorx")] [node name="Statue Room" parent="." instance=ExtResource("5_ytorx")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.99947, 0, 16.0695) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.99947, 0, 16.0695)
[node name="Antechamber B" parent="." instance=ExtResource("9_04eyt")] [node name="Antechamber B" parent="." instance=ExtResource("9_04eyt")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18.992, -0.026, -3.989) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14.992, -0.026, -3.989)
[node name="CA1_3BLOCK" parent="." instance=ExtResource("10_guw1g")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, -16)
[node name="CA1_SBLOCK" parent="." instance=ExtResource("8_00gcs")] [node name="CA1_SBLOCK" parent="." instance=ExtResource("8_00gcs")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, 20) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 20)
[node name="CA1_3BLOCK2" parent="." instance=ExtResource("10_guw1g")] [node name="CA1_3BLOCK2" parent="." instance=ExtResource("10_guw1g")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -9, 0, -4) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -9, 0, -4)
[node name="A1C1BLOCK2" parent="." instance=ExtResource("14_h8iwc")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 20)
[node name="CA1_TBLOCK2" parent="." instance=ExtResource("10_3jr52")] [node name="CA1_TBLOCK2" parent="." instance=ExtResource("10_3jr52")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -44.8153, 0, 12) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -44.8153, 0, 16)
[node name="CA1_CORNERBLOCK2" parent="." instance=ExtResource("11_yykxu")] [node name="CA1_CORNERBLOCK2" parent="." instance=ExtResource("11_yykxu")]
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -20.8153, 0, 4) transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -20.8153, 0, 8)
[node name="CA1_2BLOCK" parent="." instance=ExtResource("3_q0osc")] [node name="CA1_2BLOCK" parent="." instance=ExtResource("3_q0osc")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -36.8153, 0, 8) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -36.8153, 0, 12)
[node name="BasinRoom" parent="." instance=ExtResource("13_5ieds")] [node name="BasinRoom" parent="." instance=ExtResource("13_5ieds")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 42.865, -0.055, -17.97) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 38.865, -0.055, -17.97)
[node name="Long Room" parent="." instance=ExtResource("14_q0osc")] [node name="Long Room" parent="." instance=ExtResource("14_q0osc")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.768, 0.035, 41.98) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.36049, 0.035, 46.0044)
[node name="CA1_CORNERBLOCK3" parent="." instance=ExtResource("11_yykxu")] [node name="CA1_CORNERBLOCK3" parent="." instance=ExtResource("11_yykxu")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -24.8153, 0, 44) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -24.8153, 0, 48)
[node name="CA1_2BLOCK2" parent="." instance=ExtResource("3_q0osc")] [node name="CA1_2BLOCK2" parent="." instance=ExtResource("3_q0osc")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -24.8153, 0, 28) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -24.8153, 0, 32)
[node name="CA1_TBLOCK3" parent="." instance=ExtResource("10_3jr52")] [node name="CA1_TBLOCK3" parent="." instance=ExtResource("10_3jr52")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -48.8153, 0, -8) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -48.8153, 0, -8)
@@ -86,16 +130,32 @@ transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -48.81
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -60.7408, 0, -6.0197) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -60.7408, 0, -6.0197)
[node name="Node3D" parent="." instance=ExtResource("15_rdx86")] [node name="Node3D" parent="." instance=ExtResource("15_rdx86")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.62398, 0, 29.9916) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.17978, 0, 33.6951)
[node name="Node3D2" parent="." instance=ExtResource("15_rdx86")] [node name="Node3D2" parent="." instance=ExtResource("15_rdx86")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.2735, 0, 29.8348) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 20.8234, 0, 33.4579)
[node name="Node3D3" parent="." instance=ExtResource("15_rdx86")] [node name="Node3D3" parent="." instance=ExtResource("15_rdx86")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.65816, 0, 53.8677) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.12603, 0, 58.1487)
[node name="Node3D4" parent="." instance=ExtResource("15_rdx86")] [node name="Node3D4" parent="." instance=ExtResource("15_rdx86")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.3077, 0, 53.8601) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 20.9012, 0, 58.0875)
[node name="Node3D5" parent="." instance=ExtResource("15_rdx86")] [node name="Node3D5" parent="." instance=ExtResource("15_rdx86")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 27.3277, 0, 42) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 27.3277, 0.145948, 45.946)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.87502, 0.373, 11.4857)
mesh = SubResource("PlaneMesh_2edmy")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"
[node name="CA1_2BLOCK4" parent="." instance=ExtResource("3_q0osc")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, -16)
[node name="A1C1BLOCK2" parent="." instance=ExtResource("14_h8iwc")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -44.8156, 0, 4)

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://c73e5x0bxep1w"] [gd_scene load_steps=22 format=3 uid="uid://c73e5x0bxep1w"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_d7vxb"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_d7vxb"]
[ext_resource type="PackedScene" uid="uid://dn5546yqyntfr" path="res://src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn" id="2_lblk7"] [ext_resource type="PackedScene" uid="uid://dn5546yqyntfr" path="res://src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn" id="2_lblk7"]
@@ -15,6 +15,56 @@
[ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="10_g8yk0"] [ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="10_g8yk0"]
[ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="12_mwhl3"] [ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="12_mwhl3"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="14_s33ym"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="14_s33ym"]
[ext_resource type="Texture2D" uid="uid://xq1l5jjgyw1a" path="res://src/minimap/Floor Maps/4A.png" id="16_xbbxa"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bqqn6"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_xbbxa")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_e2od1"]
material = SubResource("StandardMaterial3D_bqqn6")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor4a" type="Node3D"] [node name="Floor4a" type="Node3D"]
script = ExtResource("1_d7vxb") script = ExtResource("1_d7vxb")
@@ -87,3 +137,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.8492, 0, 27.9523)
[node name="BasinRoom" parent="." instance=ExtResource("4_tdrvk")] [node name="BasinRoom" parent="." instance=ExtResource("4_tdrvk")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 53.734, 0, 25.972) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 53.734, 0, 25.972)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.3232, 0.373, 9.60703)
mesh = SubResource("PlaneMesh_e2od1")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=12 format=3 uid="uid://b0ufyie2aq3oy"] [gd_scene load_steps=18 format=3 uid="uid://b0ufyie2aq3oy"]
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="1_jn0u4"] [ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="1_jn0u4"]
[ext_resource type="PackedScene" uid="uid://by2op0p65ht27" path="res://src/map/dungeon/rooms/Set A/02. Big Block Room.tscn" id="2_eck5x"] [ext_resource type="PackedScene" uid="uid://by2op0p65ht27" path="res://src/map/dungeon/rooms/Set A/02. Big Block Room.tscn" id="2_eck5x"]
@@ -11,6 +11,56 @@
[ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="9_hvujx"] [ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="9_hvujx"]
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="10_biyx8"] [ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="10_biyx8"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="11_t8wwl"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="11_t8wwl"]
[ext_resource type="Texture2D" uid="uid://bqie7xdfad657" path="res://src/minimap/Floor Maps/4B.png" id="12_eck5x"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3sxps"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("12_eck5x")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_a154m"]
material = SubResource("StandardMaterial3D_3sxps")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="4b" type="Node3D"] [node name="4b" type="Node3D"]
@@ -18,28 +68,28 @@
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 3.02273, -0.0856504, -2) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 3.02273, -0.0856504, -2)
[node name="02_BigBlockRoom" parent="." instance=ExtResource("2_eck5x")] [node name="02_BigBlockRoom" parent="." instance=ExtResource("2_eck5x")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -47, 0, -2) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46.9625, 0, -2)
[node name="Floor Exit A" parent="." instance=ExtResource("3_3sxps")] [node name="Floor Exit A" parent="." instance=ExtResource("3_3sxps")]
transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, -75.603, 0, -36.255) transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, -74.815, 0, -36.255)
[node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("4_a154m")] [node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("4_a154m")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -77, 0, 0) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -76.8456, 0, 0)
[node name="Statue Room" parent="." instance=ExtResource("5_nyiho")] [node name="Statue Room" parent="." instance=ExtResource("5_nyiho")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -9.059, 0, -31.732) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -9.02685, 0, -31.732)
[node name="A1C1BLOCK" parent="." instance=ExtResource("6_teye4")] [node name="A1C1BLOCK" parent="." instance=ExtResource("6_teye4")]
transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, -9, 0, -19.8708) transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, -9, 0, -19.8708)
[node name="Statue Room2" parent="." instance=ExtResource("5_nyiho")] [node name="Statue Room2" parent="." instance=ExtResource("5_nyiho")]
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 15.001, 0, -31.902) transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 15.0332, 0, -31.902)
[node name="CA1_2BLOCK" parent="." instance=ExtResource("7_x7kg0")] [node name="CA1_2BLOCK" parent="." instance=ExtResource("7_x7kg0")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 0, -31.776) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 0, -31.799)
[node name="A1C1BLOCK2" parent="." instance=ExtResource("6_teye4")] [node name="A1C1BLOCK2" parent="." instance=ExtResource("6_teye4")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 19.035, 0, -19.8708) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 19.0672, 0, -19.8708)
[node name="01_SmallBlockA1" parent="." instance=ExtResource("8_a5gu2")] [node name="01_SmallBlockA1" parent="." instance=ExtResource("8_a5gu2")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.96341, -0.00928688, 25.9245) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.96341, -0.00928688, 25.9245)
@@ -58,3 +108,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.11696, -0.0856504, 36.2686
[node name="Node3D3" parent="." instance=ExtResource("11_t8wwl")] [node name="Node3D3" parent="." instance=ExtResource("11_t8wwl")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 3.02273, -0.0856504, 25.9116) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 3.02273, -0.0856504, 25.9116)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26.3714, 0.373, -7.52566)
mesh = SubResource("PlaneMesh_a154m")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=13 format=3 uid="uid://cm877g6lash4d"] [gd_scene load_steps=19 format=3 uid="uid://cm877g6lash4d"]
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="1_vtmv8"] [ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="1_vtmv8"]
[ext_resource type="PackedScene" uid="uid://d2fbbjlkiqlao" path="res://src/map/dungeon/rooms/Set A/Gallery A1.tscn" id="2_f4t56"] [ext_resource type="PackedScene" uid="uid://d2fbbjlkiqlao" path="res://src/map/dungeon/rooms/Set A/Gallery A1.tscn" id="2_f4t56"]
@@ -12,6 +12,56 @@
[ext_resource type="PackedScene" uid="uid://ckopnseygq01m" path="res://src/map/dungeon/corridors/A1 - Corridor - 5 Block .tscn" id="10_ht4wn"] [ext_resource type="PackedScene" uid="uid://ckopnseygq01m" path="res://src/map/dungeon/corridors/A1 - Corridor - 5 Block .tscn" id="10_ht4wn"]
[ext_resource type="PackedScene" uid="uid://dv6umo0bmlyyj" path="res://src/map/dungeon/rooms/Set A/01. Small Block A1.tscn" id="11_q1n51"] [ext_resource type="PackedScene" uid="uid://dv6umo0bmlyyj" path="res://src/map/dungeon/rooms/Set A/01. Small Block A1.tscn" id="11_q1n51"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="12_q4hkw"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="12_q4hkw"]
[ext_resource type="Texture2D" uid="uid://bsgxwo7c4kt3s" path="res://src/minimap/Floor Maps/4C.png" id="13_3bt31"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rghjh"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("13_3bt31")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_nls0x"]
material = SubResource("StandardMaterial3D_rghjh")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="4c" type="Node3D"] [node name="4c" type="Node3D"]
@@ -25,10 +75,10 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -12.70
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.1365, 0, -3.89138) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.1365, 0, -3.89138)
[node name="Antechamber A" parent="." instance=ExtResource("4_j3t0d")] [node name="Antechamber A" parent="." instance=ExtResource("4_j3t0d")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 39.2939, 0, 14) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 39.3527, 0, 14.0449)
[node name="Floor Exit A" parent="." instance=ExtResource("5_7y8bj")] [node name="Floor Exit A" parent="." instance=ExtResource("5_7y8bj")]
transform = Transform3D(2, 0, -5.96046e-08, 0, 2, 0, 5.96046e-08, 0, 2, 45.3379, 0, -26.215) transform = Transform3D(2, 0, -5.96046e-08, 0, 2, 0, 5.96046e-08, 0, 2, 45.2201, 0, -26.1535)
[node name="A1C1BLOCK" parent="." instance=ExtResource("6_p5r18")] [node name="A1C1BLOCK" parent="." instance=ExtResource("6_p5r18")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -28.6231, 0, -1.89138) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -28.6231, 0, -1.89138)
@@ -37,7 +87,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -28.6231, 0, -1.89138)
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -36.688, 0, -18) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -36.688, 0, -18)
[node name="CA1_3BLOCK" parent="." instance=ExtResource("8_socwj")] [node name="CA1_3BLOCK" parent="." instance=ExtResource("8_socwj")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11.2939, 0, 22) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11.2939, 0, 22.0449)
[node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("9_tje7e")] [node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("9_tje7e")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -40.6847, 0, -33.9042) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -40.6847, 0, -33.9042)
@@ -46,34 +96,50 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -40.68
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -32.7231, 0, -29.9042) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -32.7231, 0, -29.9042)
[node name="CA1_CORNERBLOCK2" parent="." instance=ExtResource("9_tje7e")] [node name="CA1_CORNERBLOCK2" parent="." instance=ExtResource("9_tje7e")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 47.2939, 0, 30) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 47.1761, 0, 30.0615)
[node name="CA1_5BLOCK" parent="." instance=ExtResource("10_ht4wn")] [node name="CA1_5BLOCK" parent="." instance=ExtResource("10_ht4wn")]
transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, 43.2939, 0, 2) transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, 43.1761, 0, 2.06145)
[node name="01_SmallBlockA1" parent="." instance=ExtResource("11_q1n51")] [node name="01_SmallBlockA1" parent="." instance=ExtResource("11_q1n51")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.0272, 0, 0) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.2472, 0, 0.0806752)
[node name="A1C1BLOCK3" parent="." instance=ExtResource("6_p5r18")] [node name="A1C1BLOCK3" parent="." instance=ExtResource("6_p5r18")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11.0272, 0, 2) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11.2738, 0, 2.05734)
[node name="Node3D" parent="." instance=ExtResource("12_q4hkw")] [node name="Node3D" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.0046, 0.00110281, -9.70406) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.2512, 0.00110281, -10.2466)
[node name="Node3D2" parent="." instance=ExtResource("12_q4hkw")] [node name="Node3D2" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.0639, 0, 10.0896) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.2503, 0, 10.0896)
[node name="Node3D3" parent="." instance=ExtResource("12_q4hkw")] [node name="Node3D3" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 31.5531, 0, -0.0739133) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 31.847, 0, 0.0626362)
[node name="Node3D4" parent="." instance=ExtResource("12_q4hkw")] [node name="Node3D4" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -65.9465, 0.0448629, 8.6602) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66.6296, 0.0448629, 8.6602)
[node name="Node3D5" parent="." instance=ExtResource("12_q4hkw")] [node name="Node3D5" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -37.9974, 0.0448629, 8.53926) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38.7045, 0.0448629, 8.53926)
[node name="Node3D8" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -25.0893, 0.0448629, 24.0541)
[node name="Node3D9" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(1, 0, -2.98023e-08, 0, 1, 0, 2.98023e-08, 0, 1, -6.7166, 0.0448629, 38.4406)
[node name="Node3D6" parent="." instance=ExtResource("12_q4hkw")] [node name="Node3D6" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -72.8267, 0, -3.97536) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -73.5485, 0, -3.91864)
[node name="Node3D7" parent="." instance=ExtResource("12_q4hkw")] [node name="Node3D7" parent="." instance=ExtResource("12_q4hkw")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -65.9774, 0, -16.0508) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66.5259, 0, -16.2525)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.70335, 0.373, -3.95678)
mesh = SubResource("PlaneMesh_nls0x")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://bm50kvu4aw3ps"] [gd_scene load_steps=22 format=3 uid="uid://bm50kvu4aw3ps"]
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="1_kse07"] [ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="1_kse07"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ooui3"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ooui3"]
@@ -15,6 +15,56 @@
[ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="12_e5w2k"] [ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="12_e5w2k"]
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="13_y6x22"] [ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="13_y6x22"]
[ext_resource type="PackedScene" uid="uid://d2fbbjlkiqlao" path="res://src/map/dungeon/rooms/Set A/Gallery A1.tscn" id="15_b6ce1"] [ext_resource type="PackedScene" uid="uid://d2fbbjlkiqlao" path="res://src/map/dungeon/rooms/Set A/Gallery A1.tscn" id="15_b6ce1"]
[ext_resource type="Texture2D" uid="uid://btgkhk070a7g7" path="res://src/minimap/Floor Maps/5B.png" id="16_7kic8"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qsk28"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_7kic8")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_yhnvc"]
material = SubResource("StandardMaterial3D_qsk28")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor6a" type="Node3D"] [node name="Floor6a" type="Node3D"]
script = ExtResource("1_ooui3") script = ExtResource("1_ooui3")
@@ -56,7 +106,7 @@ transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 68.325
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 59.8937, 0, -46.5017) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 59.8937, 0, -46.5017)
[node name="Node3D11" parent="." instance=ExtResource("8_3ae17")] [node name="Node3D11" parent="." instance=ExtResource("8_3ae17")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.2719, 0, -72.7061) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.2719, 0, -69.6933)
[node name="Node3D12" parent="." instance=ExtResource("8_3ae17")] [node name="Node3D12" parent="." instance=ExtResource("8_3ae17")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -32.2337, -0.0302756, -11.1765) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -32.2337, -0.0302756, -11.1765)
@@ -86,13 +136,23 @@ transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, -21.8763, -0.0302756, -61.079
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 92.3546, 1.97453, -46.5255) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 92.3546, 1.97453, -46.5255)
[node name="Node3D18" parent="." instance=ExtResource("8_3ae17")] [node name="Node3D18" parent="." instance=ExtResource("8_3ae17")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 9, 0, -34.5417) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 9.7533, 0, -34.5417)
[node name="Node3D19" parent="." instance=ExtResource("8_3ae17")] [node name="Node3D19" parent="." instance=ExtResource("8_3ae17")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 9.00129, 0.0448142, -62.5257) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 10.0402, 0.0448142, -62.5257)
[node name="Node3D9" parent="." instance=ExtResource("8_3ae17")] [node name="Node3D9" parent="." instance=ExtResource("8_3ae17")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 60.547, 0.0679841, -34.542) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 60.547, 0.0679841, -34.542)
[node name="Node3D20" parent="." instance=ExtResource("8_3ae17")] [node name="Node3D20" parent="." instance=ExtResource("8_3ae17")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66.315, 0.000980735, -37.0096) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66.315, 0.000980735, -37.0096)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32.1436, 0.373, -25.006)
mesh = SubResource("PlaneMesh_yhnvc")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=15 format=3 uid="uid://c13gaccaiv202"] [gd_scene load_steps=21 format=3 uid="uid://c13gaccaiv202"]
[ext_resource type="PackedScene" uid="uid://by2op0p65ht27" path="res://src/map/dungeon/rooms/Set A/02. Big Block Room.tscn" id="1_7ih34"] [ext_resource type="PackedScene" uid="uid://by2op0p65ht27" path="res://src/map/dungeon/rooms/Set A/02. Big Block Room.tscn" id="1_7ih34"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_l4jfs"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_l4jfs"]
@@ -14,78 +14,138 @@
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="11_nfmbw"] [ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="11_nfmbw"]
[ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="13_xfkqa"] [ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="13_xfkqa"]
[ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="14_1v2c3"] [ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="14_1v2c3"]
[ext_resource type="Texture2D" uid="uid://bhv1ce2jiefrc" path="res://src/minimap/Floor Maps/5Z.png" id="15_wf378"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5dhby"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("15_wf378")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_36beo"]
material = SubResource("StandardMaterial3D_5dhby")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor8z" type="Node3D"] [node name="Floor8z" type="Node3D"]
script = ExtResource("1_l4jfs") script = ExtResource("1_l4jfs")
[node name="02_BigBlockRoom" parent="." instance=ExtResource("1_7ih34")] [node name="02_BigBlockRoom" parent="." instance=ExtResource("1_7ih34")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -21.309, 0, 11.5671) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -21.2205, 0, 10.9037)
[node name="Item Transfer Room" parent="." instance=ExtResource("2_502ht")] [node name="Item Transfer Room" parent="." instance=ExtResource("2_502ht")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.968846, 0, -16.0109) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.16053, 0, -16.0492)
[node name="BreakableWallRoom" parent="." instance=ExtResource("3_20m80")] [node name="BreakableWallRoom" parent="." instance=ExtResource("3_20m80")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 4.66353, 0.488961, -69.9439) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 4.47185, 0.488961, -69.9822)
[node name="Node3D" parent="." instance=ExtResource("5_xx18x")] [node name="Node3D" parent="." instance=ExtResource("5_xx18x")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 8.97195, 0, -27.0573) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 8.78027, 0, -27.0956)
[node name="Node3D2" parent="." instance=ExtResource("6_5nybr")] [node name="Node3D2" parent="." instance=ExtResource("6_5nybr")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 8.97195, 0, -35.0573) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 8.78027, 0, -35.0956)
[node name="Node3D3" parent="." instance=ExtResource("7_e0v1c")] [node name="Node3D3" parent="." instance=ExtResource("7_e0v1c")]
transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, -11.028, 0, -31.0573) transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, -11.2197, 0, -31.0956)
[node name="Node3D6" parent="." instance=ExtResource("5_xx18x")] [node name="Node3D6" parent="." instance=ExtResource("5_xx18x")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 8.69101, 0, 9.56711) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 8.73523, 0, 8.90372)
[node name="Node3D7" parent="." instance=ExtResource("5_xx18x")] [node name="Node3D7" parent="." instance=ExtResource("5_xx18x")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.309, 0, 13.5671) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.2205, 0, 12.9037)
[node name="Node3D8" parent="." instance=ExtResource("8_a5dbn")] [node name="Node3D8" parent="." instance=ExtResource("8_a5dbn")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -51.3399, 0, -2.43289) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -51.2514, 0, -3.09628)
[node name="Pit Room A" parent="." instance=ExtResource("9_7rwna")] [node name="Pit Room A" parent="." instance=ExtResource("9_7rwna")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -22.941, 3.44562, -2.045) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -22.941, 3.44562, -2.045)
[node name="Node3D5" parent="." instance=ExtResource("10_max4y")] [node name="Node3D5" parent="." instance=ExtResource("10_max4y")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -23.028, 0, -27.0573) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -23.2197, 0, -27.0956)
[node name="Node3D9" parent="." instance=ExtResource("10_max4y")] [node name="Node3D9" parent="." instance=ExtResource("10_max4y")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -87.705, 0, -27.0737) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -87.3185, 0, -27.0979)
[node name="BasinRoom" parent="." instance=ExtResource("11_nfmbw")] [node name="BasinRoom" parent="." instance=ExtResource("11_nfmbw")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -95.705, 0, -29.0737) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -95.3185, 0, -29.0979)
[node name="Floor Exit A" parent="." instance=ExtResource("4_nm3ab")] [node name="Floor Exit A" parent="." instance=ExtResource("4_nm3ab")]
transform = Transform3D(-2, 0, 1.74846e-07, 0, 2, 0, -1.74846e-07, 0, -2, 6.58988, 0, 45.745) transform = Transform3D(-2, 0, 1.74846e-07, 0, 2, 0, -1.74846e-07, 0, -2, 6.6341, 0, 45.0816)
[node name="CA1_2BLOCK" parent="." instance=ExtResource("8_a5dbn")] [node name="CA1_2BLOCK" parent="." instance=ExtResource("8_a5dbn")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -51.3815, 0, -63.496) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -51.3299, 0, -63.3928)
[node name="Statue Room" parent="." instance=ExtResource("13_xfkqa")] [node name="Statue Room" parent="." instance=ExtResource("13_xfkqa")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -63.381, 0, -71.4265) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -63.3294, 0, -71.3233)
[node name="Statue Room2" parent="." instance=ExtResource("13_xfkqa")] [node name="Statue Room2" parent="." instance=ExtResource("13_xfkqa")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -35.381, 0, -71.4265) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -35.3294, 0, -71.3233)
[node name="CA1_CROSSBLOCK" parent="." instance=ExtResource("14_1v2c3")] [node name="CA1_CROSSBLOCK" parent="." instance=ExtResource("14_1v2c3")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.3815, 0, -67.496) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.3299, 0, -67.3928)
[node name="CA1_TBLOCK" parent="." instance=ExtResource("7_e0v1c")] [node name="CA1_TBLOCK" parent="." instance=ExtResource("7_e0v1c")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -55.3815, 0, -87.496) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -55.3299, 0, -87.3928)
[node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("5_xx18x")] [node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("5_xx18x")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -67.3815, 0, -87.496) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -67.3299, 0, -87.3928)
[node name="CA1_CORNERBLOCK2" parent="." instance=ExtResource("5_xx18x")] [node name="CA1_CORNERBLOCK2" parent="." instance=ExtResource("5_xx18x")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -31.3815, 0, -87.496) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -31.3299, 0, -87.3928)
[node name="A1C1BLOCK" parent="." instance=ExtResource("6_5nybr")] [node name="A1C1BLOCK" parent="." instance=ExtResource("6_5nybr")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -59.3815, 0, -83.496) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -59.3299, 0, -83.3928)
[node name="A1C1BLOCK2" parent="." instance=ExtResource("6_5nybr")] [node name="A1C1BLOCK2" parent="." instance=ExtResource("6_5nybr")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -43.3815, 0, -83.496) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -43.3299, 0, -83.3928)
[node name="A1C1BLOCK3" parent="." instance=ExtResource("6_5nybr")] [node name="A1C1BLOCK3" parent="." instance=ExtResource("6_5nybr")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.3815, 0, -75.496) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.3299, 0, -75.3928)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -35.2676, 0.373, -16.1372)
mesh = SubResource("PlaneMesh_36beo")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://da723xxo25qqg"] [gd_scene load_steps=22 format=3 uid="uid://da723xxo25qqg"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_erofi"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_erofi"]
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="2_p70jf"] [ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="2_p70jf"]
@@ -15,54 +15,104 @@
[ext_resource type="PackedScene" uid="uid://dgimg6s6w3xxd" path="res://src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn" id="13_grhee"] [ext_resource type="PackedScene" uid="uid://dgimg6s6w3xxd" path="res://src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn" id="13_grhee"]
[ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="14_syv43"] [ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="14_syv43"]
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="15_mtb6u"] [ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="15_mtb6u"]
[ext_resource type="Texture2D" uid="uid://bd4kvg6n8gt6r" path="res://src/minimap/Floor Maps/6A.png" id="16_p70jf"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5rsdd"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_p70jf")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_l15fl"]
material = SubResource("StandardMaterial3D_5rsdd")
size = Vector2(220.5, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor7a" type="Node3D"] [node name="Floor7a" type="Node3D"]
script = ExtResource("1_erofi") script = ExtResource("1_erofi")
[node name="Pit Room A" parent="." instance=ExtResource("2_p70jf")] [node name="Pit Room A" parent="." instance=ExtResource("2_p70jf")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.387, 3.24191, 45.5497) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.387, 3.56246, 45.5497)
[node name="A1CircleRoom" parent="." instance=ExtResource("3_5rsdd")] [node name="A1CircleRoom" parent="." instance=ExtResource("3_5rsdd")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -30.9011, 2.00522, 19.4067) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -30.9011, 2.00522, 19.2355)
[node name="Column Room" parent="." instance=ExtResource("4_l15fl")] [node name="Column Room" parent="." instance=ExtResource("4_l15fl")]
transform = Transform3D(1, 0, -1.06581e-14, 0, 1, 0, 1.06581e-14, 0, 1, 78.6671, 0, 42.8258) transform = Transform3D(1, 0, -1.06581e-14, 0, 1, 0, 1.06581e-14, 0, 1, 78.6671, 0, 42.7835)
[node name="Statue Room" parent="." instance=ExtResource("5_w8ka0")] [node name="Statue Room" parent="." instance=ExtResource("5_w8ka0")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.7551, 0, 61.0032) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.7551, 0, 60.9609)
[node name="Node3D" parent="." instance=ExtResource("6_najg7")] [node name="Node3D" parent="." instance=ExtResource("6_najg7")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 15.5088, 0, 44.8439) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 15.5088, 0, 44.8016)
[node name="Node3D2" parent="." instance=ExtResource("7_haqg8")] [node name="Node3D2" parent="." instance=ExtResource("7_haqg8")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 43.5916, 0, 20.8303) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 43.5916, 0, 20.8303)
[node name="Node3D3" parent="." instance=ExtResource("8_jipuk")] [node name="Node3D3" parent="." instance=ExtResource("8_jipuk")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 67.7236, 0, 64.7546) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 67.7236, 0, 64.7123)
[node name="Node3D4" parent="." instance=ExtResource("8_jipuk")] [node name="Node3D4" parent="." instance=ExtResource("8_jipuk")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -60.9687, 0, 17.4067) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -60.8621, 0, 17.2355)
[node name="Node3D5" parent="." instance=ExtResource("6_najg7")] [node name="Node3D5" parent="." instance=ExtResource("6_najg7")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -52.9687, 0, 21.4067) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -52.8621, 0, 21.2355)
[node name="Node3D6" parent="." instance=ExtResource("6_najg7")] [node name="Node3D6" parent="." instance=ExtResource("6_najg7")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16.9011, 0, 21.4067) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16.9011, 0, 21.2355)
[node name="Node3D7" parent="." instance=ExtResource("9_h67dm")] [node name="Node3D7" parent="." instance=ExtResource("9_h67dm")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.7097, 0, 64.7771) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.7097, 0, 64.7348)
[node name="Seshat\'s Room" parent="." instance=ExtResource("10_3bnrp")] [node name="Seshat\'s Room" parent="." instance=ExtResource("10_3bnrp")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 128.835, 0, 42.883) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 128.762, 0, 42.8407)
[node name="Node3D8" parent="." instance=ExtResource("11_j63l1")] [node name="Node3D8" parent="." instance=ExtResource("11_j63l1")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 47.7286, 0, 64.7421) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 47.7286, 0, 64.6998)
[node name="Node3D10" parent="." instance=ExtResource("12_4ondl")] [node name="Node3D10" parent="." instance=ExtResource("12_4ondl")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 63.5728, 7.99013, 28.8297) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 63.5728, 7.99013, 28.8125)
[node name="Node3D11" parent="." instance=ExtResource("6_najg7")] [node name="Node3D11" parent="." instance=ExtResource("6_najg7")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 103.763, 0, 44.9773) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 103.714, 0, 44.935)
[node name="Node3D9" parent="." instance=ExtResource("13_grhee")] [node name="Node3D9" parent="." instance=ExtResource("13_grhee")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 67.5914, 0, 12.8261) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 67.5914, 0, 12.8261)
@@ -83,25 +133,36 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 63.6207, 0, -11.1679)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 63.6207, 0, -7.16788) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 63.6207, 0, -7.16788)
[node name="Floor Exit A" parent="." instance=ExtResource("15_mtb6u")] [node name="Floor Exit A" parent="." instance=ExtResource("15_mtb6u")]
transform = Transform3D(-2, 0, -1.78814e-07, 0, 2, 0, 1.78814e-07, 0, -2, -58.6706, 0, 53.745) transform = Transform3D(-2, 0, -1.78814e-07, 0, 2, 0, 1.78814e-07, 0, -2, -58.564, 0, 53.5738)
[node name="Statue Room2" parent="." instance=ExtResource("5_w8ka0")] [node name="Statue Room2" parent="." instance=ExtResource("5_w8ka0")]
transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 83.771, 0, -15.2174) transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 83.663, 0, -15.2174)
[node name="Statue Room3" parent="." instance=ExtResource("5_w8ka0")] [node name="Statue Room3" parent="." instance=ExtResource("5_w8ka0")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 67.4103, 0, -31.1435) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 67.4927, 0, -31.1171)
[node name="A1C1BLOCK" parent="." instance=ExtResource("12_4ondl")] [node name="A1C1BLOCK" parent="." instance=ExtResource("12_4ondl")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 71.6119, 0, -11.1688) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 71.5336, 0, -11.1688)
[node name="A1C1BLOCK2" parent="." instance=ExtResource("12_4ondl")] [node name="A1C1BLOCK2" parent="." instance=ExtResource("12_4ondl")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 63.6023, 0, -19.1717) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 67.6023, 0, -19.1453)
[node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("8_jipuk")] [node name="CA1_CORNERBLOCK" parent="." instance=ExtResource("8_jipuk")]
transform = Transform3D(-1, 0, 8.9407e-08, 0, 1, 0, -8.9407e-08, 0, -1, 87.6249, 0, -35.1553) transform = Transform3D(-1, 0, 8.9407e-08, 0, 1, 0, -8.9407e-08, 0, -1, 87.5169, 0, -35.1289)
[node name="A1C1BLOCK3" parent="." instance=ExtResource("12_4ondl")] [node name="A1C1BLOCK3" parent="." instance=ExtResource("12_4ondl")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 75.6022, 0, -31.1325) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 75.5239, 0, -31.1061)
[node name="A1C1BLOCK4" parent="." instance=ExtResource("12_4ondl")] [node name="A1C1BLOCK4" parent="." instance=ExtResource("12_4ondl")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 83.6264, 0, -23.178) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 83.5123, 0, -23.1516)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 43.4336, 0.373, 10.6265)
visible = false
mesh = SubResource("PlaneMesh_l15fl")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=19 format=3 uid="uid://biaqmugmm1wgn"] [gd_scene load_steps=25 format=3 uid="uid://biaqmugmm1wgn"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_cbuxh"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_cbuxh"]
[ext_resource type="PackedScene" uid="uid://by2op0p65ht27" path="res://src/map/dungeon/rooms/Set A/02. Big Block Room.tscn" id="1_eair3"] [ext_resource type="PackedScene" uid="uid://by2op0p65ht27" path="res://src/map/dungeon/rooms/Set A/02. Big Block Room.tscn" id="1_eair3"]
@@ -18,66 +18,116 @@
[ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="16_272of"] [ext_resource type="PackedScene" uid="uid://b6tcqnvlc5ayk" path="res://src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn" id="16_272of"]
[ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="17_7qn0v"] [ext_resource type="PackedScene" uid="uid://cmobnodvd3884" path="res://src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn" id="17_7qn0v"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="18_sne4t"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="18_sne4t"]
[ext_resource type="Texture2D" uid="uid://bm87roroo4piy" path="res://src/minimap/Floor Maps/6B.png" id="19_eltla"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n3q3o"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("19_eltla")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_m6pak"]
material = SubResource("StandardMaterial3D_n3q3o")
size = Vector2(220.5, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor8a" type="Node3D"] [node name="Floor8a" type="Node3D"]
script = ExtResource("1_cbuxh") script = ExtResource("1_cbuxh")
[node name="02_BigBlockRoom" parent="." instance=ExtResource("1_eair3")] [node name="02_BigBlockRoom" parent="." instance=ExtResource("1_eair3")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 44) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 44.0161)
[node name="Statue Room" parent="." instance=ExtResource("2_6aum5")] [node name="Statue Room" parent="." instance=ExtResource("2_6aum5")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.91425, 0, 42.0695) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.91425, 0, 42.0695)
[node name="Column Room" parent="." instance=ExtResource("3_h1hr4")] [node name="Column Room" parent="." instance=ExtResource("3_h1hr4")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 37.9435, 0, 7.06517) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 37.9435, 0, 7.1215)
[node name="Item Transfer Room" parent="." instance=ExtResource("4_bc3au")] [node name="Item Transfer Room" parent="." instance=ExtResource("4_bc3au")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 75.0592, 0, 16.0181) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 74.9977, 0, 16.0744)
[node name="BasinRoom" parent="." instance=ExtResource("5_5ouf4")] [node name="BasinRoom" parent="." instance=ExtResource("5_5ouf4")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 76, 0, 44) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 75.9484, 0, 44)
[node name="Antechamber A" parent="." instance=ExtResource("6_dcyku")] [node name="Antechamber A" parent="." instance=ExtResource("6_dcyku")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 12.0852, 0, 6) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 12.0852, 0, 6.07043)
[node name="Node3D" parent="." instance=ExtResource("8_cv16d")] [node name="Node3D" parent="." instance=ExtResource("8_cv16d")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 36, 0, -30) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 36, 0, -29.8911)
[node name="Node3D5" parent="." instance=ExtResource("8_cv16d")] [node name="Node3D5" parent="." instance=ExtResource("8_cv16d")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 0, 22) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 0, 22.0563)
[node name="Node3D4" parent="." instance=ExtResource("8_cv16d")] [node name="Node3D4" parent="." instance=ExtResource("8_cv16d")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0852232, 0, 46) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0852232, 0, 46)
[node name="Node3D6" parent="." instance=ExtResource("9_og7ik")] [node name="Node3D6" parent="." instance=ExtResource("9_og7ik")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -23.9148, 0, 22) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -23.9148, 0, 22.0888)
[node name="Node3D7" parent="." instance=ExtResource("10_wssiw")] [node name="Node3D7" parent="." instance=ExtResource("10_wssiw")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -24, 0, 10) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -23.9264, 0, 10.0888)
[node name="Node3D8" parent="." instance=ExtResource("11_inun7")] [node name="Node3D8" parent="." instance=ExtResource("11_inun7")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -20, 0, 22) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -19.9264, 0, 22.0888)
[node name="Node3D9" parent="." instance=ExtResource("8_cv16d")] [node name="Node3D9" parent="." instance=ExtResource("8_cv16d")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16, 0, 14) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.9264, 0, 14.0888)
[node name="Node3D2" parent="." instance=ExtResource("12_025fw")] [node name="Node3D2" parent="." instance=ExtResource("12_025fw")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 56, 0, 18) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 56, 0, 18.0563)
[node name="Node3D10" parent="." instance=ExtResource("11_inun7")] [node name="Node3D10" parent="." instance=ExtResource("11_inun7")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 52, 0, 22) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 52, 0, 22.0563)
[node name="Node3D11" parent="." instance=ExtResource("8_cv16d")] [node name="Node3D11" parent="." instance=ExtResource("8_cv16d")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 60, 0, 26) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 60, 0, 26.0563)
[node name="A1-SOCKET" parent="." instance=ExtResource("13_ds4nw")] [node name="A1-SOCKET" parent="." instance=ExtResource("13_ds4nw")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 51.6825, -0.00574404, 19.9924) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 51.6825, -0.00574404, 19.9924)
[node name="Floor Exit A" parent="." instance=ExtResource("7_gwj4i")] [node name="Floor Exit A" parent="." instance=ExtResource("7_gwj4i")]
transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 38.1494, 0, -58.255) transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 38.1494, 0, -58.1461)
[node name="Seshat\'s Room" parent="." instance=ExtResource("15_ow0v4")] [node name="Seshat\'s Room" parent="." instance=ExtResource("15_ow0v4")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 39, 0, 72) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 39.2568, 0, 71.9255)
[node name="CA1_4BLOCK" parent="." instance=ExtResource("16_272of")] [node name="CA1_4BLOCK" parent="." instance=ExtResource("16_272of")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 60, 0, 50) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 60, 0, 50)
@@ -90,3 +140,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 60, 0, 46)
[node name="Node3D3" parent="." instance=ExtResource("18_sne4t")] [node name="Node3D3" parent="." instance=ExtResource("18_sne4t")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 68, 0, 72) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 68, 0, 72)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 40.9971, 0.373, 12.6741)
mesh = SubResource("PlaneMesh_m6pak")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=20 format=3 uid="uid://yammno7bvu7x"] [gd_scene load_steps=23 format=3 uid="uid://yammno7bvu7x"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_caxvq"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_caxvq"]
[ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="3_iucgs"] [ext_resource type="PackedScene" uid="uid://ce0cjm6v7ct6c" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="3_iucgs"]
@@ -18,14 +18,55 @@
[ext_resource type="Texture2D" uid="uid://ybki82ap65pf" path="res://src/minimap/Floor Maps/6C.png" id="17_mqwjf"] [ext_resource type="Texture2D" uid="uid://ybki82ap65pf" path="res://src/minimap/Floor Maps/6C.png" id="17_mqwjf"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="18_xihc4"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="18_xihc4"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_caxvq"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e0m0a"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("17_mqwjf") albedo_texture = ExtResource("17_mqwjf")
texture_filter = 0 texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_3rk4b"] [sub_resource type="PlaneMesh" id="PlaneMesh_mqwjf"]
material = SubResource("StandardMaterial3D_caxvq") material = SubResource("StandardMaterial3D_e0m0a")
size = Vector2(220.5, 150) size = Vector2(220.5, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor8a" type="Node3D"] [node name="Floor8a" type="Node3D"]
script = ExtResource("1_caxvq") script = ExtResource("1_caxvq")
@@ -93,8 +134,14 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74.8924, 0, -16.4365)
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102.798, 0, -16.5616) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102.798, 0, -16.5616)
[node name="Node3D4" parent="." instance=ExtResource("18_xihc4")] [node name="Node3D4" parent="." instance=ExtResource("18_xihc4")]
transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, 109.6, 0, -3.94532) transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, 109.023, 0, -3.94532)
[node name="MeshInstance3D" type="MeshInstance3D" parent="."] [node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29.0264, 0, -8.50297) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 28.946, 2.78801, -8.047)
mesh = SubResource("PlaneMesh_3rk4b") mesh = SubResource("PlaneMesh_mqwjf")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://cvwa7ashsgnxm"] [gd_scene load_steps=22 format=3 uid="uid://cvwa7ashsgnxm"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_53qaf"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_53qaf"]
[ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="1_mmbwo"] [ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="1_mmbwo"]
@@ -15,12 +15,62 @@
[ext_resource type="PackedScene" uid="uid://dlrd6vvwaqq3n" path="res://src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn" id="12_u7npj"] [ext_resource type="PackedScene" uid="uid://dlrd6vvwaqq3n" path="res://src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn" id="12_u7npj"]
[ext_resource type="PackedScene" uid="uid://dgimg6s6w3xxd" path="res://src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn" id="13_oynqo"] [ext_resource type="PackedScene" uid="uid://dgimg6s6w3xxd" path="res://src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn" id="13_oynqo"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="14_iks40"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="14_iks40"]
[ext_resource type="Texture2D" uid="uid://dl0ujqbkuph76" path="res://src/minimap/Floor Maps/7A.png" id="15_8a0lp"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e0m0a"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("15_8a0lp")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_u6l1h"]
material = SubResource("StandardMaterial3D_e0m0a")
size = Vector2(220.5, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor9a" type="Node3D"] [node name="Floor9a" type="Node3D"]
script = ExtResource("1_53qaf") script = ExtResource("1_53qaf")
[node name="GesthemiisRoom" parent="." instance=ExtResource("1_mmbwo")] [node name="GesthemiisRoom" parent="." instance=ExtResource("1_mmbwo")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 39.0531, 0, -1.994) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 39.0155, 0, -1.994)
[node name="Water Room" parent="." instance=ExtResource("2_dlfuj")] [node name="Water Room" parent="." instance=ExtResource("2_dlfuj")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -20.9683, -0.0776136, -7.95345) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -20.9683, -0.0776136, -7.95345)
@@ -31,20 +81,17 @@ transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 25, 0,
[node name="01_SmallBlockA1" parent="." instance=ExtResource("4_af4td")] [node name="01_SmallBlockA1" parent="." instance=ExtResource("4_af4td")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, 38) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, 38)
[node name="Floor Exit A" parent="." instance=ExtResource("5_t45sr")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 43.397, 0, -42.255)
[node name="BasinRoom" parent="." instance=ExtResource("6_ioy8s")] [node name="BasinRoom" parent="." instance=ExtResource("6_ioy8s")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -58.879, 0, -5.94482) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -58.8511, 0, -5.94482)
[node name="Statue Room" parent="." instance=ExtResource("7_uyc6d")] [node name="Statue Room" parent="." instance=ExtResource("7_uyc6d")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18.9472, 0, 36.0856) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18.9472, 0, 36.0856)
[node name="Node3D" parent="." instance=ExtResource("8_lcvuq")] [node name="Node3D" parent="." instance=ExtResource("8_lcvuq")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 41, 0, -28) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 40.9794, 0, -27.9454)
[node name="Node3D2" parent="." instance=ExtResource("9_c3xfa")] [node name="Node3D2" parent="." instance=ExtResource("9_c3xfa")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 45, 0, 24) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 44.9624, 0, 24)
[node name="Node3D4" parent="." instance=ExtResource("10_qdmty")] [node name="Node3D4" parent="." instance=ExtResource("10_qdmty")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25, 0, 24) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25, 0, 24)
@@ -56,7 +103,7 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 29, 0,
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 9, 0, 20) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 9, 0, 20)
[node name="Node3D3" parent="." instance=ExtResource("11_m0742")] [node name="Node3D3" parent="." instance=ExtResource("11_m0742")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33, 0, 24) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32.9624, 0, 24)
[node name="Node3D6" parent="." instance=ExtResource("11_m0742")] [node name="Node3D6" parent="." instance=ExtResource("11_m0742")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 0, 24) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 0, 24)
@@ -105,3 +152,16 @@ transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 11.128
[node name="Node3D21" parent="." instance=ExtResource("14_iks40")] [node name="Node3D21" parent="." instance=ExtResource("14_iks40")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 25, 0, -18) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 25, 0, -18)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12.3119, 0.373, -2.33316)
mesh = SubResource("PlaneMesh_u6l1h")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"
[node name="Floor Exit A" parent="." instance=ExtResource("5_t45sr")]
transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 43.019, 0, -56.4)

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=15 format=3 uid="uid://ckqyui786dsyt"] [gd_scene load_steps=22 format=3 uid="uid://ckqyui786dsyt"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ed3py"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_ed3py"]
[ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="2_6pr7g"] [ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="2_6pr7g"]
@@ -14,12 +14,63 @@
[ext_resource type="PackedScene" uid="uid://cjxrkxr0bgeh1" path="res://src/map/dungeon/corridors/A1 - Corridor - Corner .tscn" id="10_36ui0"] [ext_resource type="PackedScene" uid="uid://cjxrkxr0bgeh1" path="res://src/map/dungeon/corridors/A1 - Corridor - Corner .tscn" id="10_36ui0"]
[ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="12_ip0us"] [ext_resource type="PackedScene" uid="uid://8d6n4tk5aam0" path="res://src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn" id="12_ip0us"]
[ext_resource type="PackedScene" uid="uid://dlrd6vvwaqq3n" path="res://src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn" id="13_jshi3"] [ext_resource type="PackedScene" uid="uid://dlrd6vvwaqq3n" path="res://src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn" id="13_jshi3"]
[ext_resource type="Texture2D" uid="uid://dfsrv5rpg311v" path="res://src/minimap/Floor Maps/7B.png" id="15_6pr7g"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="16_5nwd4"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e0m0a"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("15_6pr7g")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_cmu3s"]
material = SubResource("StandardMaterial3D_e0m0a")
size = Vector2(220.5, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor9a" type="Node3D"] [node name="Floor9a" type="Node3D"]
script = ExtResource("1_ed3py") script = ExtResource("1_ed3py")
[node name="GalleryA1" parent="." instance=ExtResource("2_bg33e")] [node name="GalleryA1" parent="." instance=ExtResource("2_bg33e")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -39.8997, 0, -58.9188) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -39.8997, 2.00892, -59.8834)
[node name="Column Room" parent="." instance=ExtResource("3_ed3py")] [node name="Column Room" parent="." instance=ExtResource("3_ed3py")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.0565, 0, 18.9729) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.0565, 0, 18.9729)
@@ -28,13 +79,13 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.056
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 26.0531, 0, 8.006) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 26.0531, 0, 8.006)
[node name="Floor Exit A" parent="." instance=ExtResource("6_ocyhw")] [node name="Floor Exit A" parent="." instance=ExtResource("6_ocyhw")]
transform = Transform3D(2, 0, -2.38419e-07, 0, 2, 0, 2.38419e-07, 0, 2, 30.397, 0, -42.4054) transform = Transform3D(2, 0, -2.38419e-07, 0, 2, 0, 2.38419e-07, 0, 2, 30.0371, 0, -42.4054)
[node name="Statue Room" parent="." instance=ExtResource("8_68idg")] [node name="Statue Room" parent="." instance=ExtResource("8_68idg")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -47.9995, 0, -13.9305) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -48.2176, 0, -13.8218)
[node name="Pit Room A" parent="." instance=ExtResource("7_6pr7g")] [node name="Pit Room A" parent="." instance=ExtResource("7_6pr7g")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -77, 3.48622, 58.2146) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -77.0236, 3.52084, 58.3233)
[node name="A1CircleRoom" parent="." instance=ExtResource("8_5nwd4")] [node name="A1CircleRoom" parent="." instance=ExtResource("8_5nwd4")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 2, -27.922) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 2, -27.922)
@@ -52,7 +103,7 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 32, 0,
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 0, 34) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 0, 34)
[node name="CA1_3BLOCK2" parent="." instance=ExtResource("13_jshi3")] [node name="CA1_3BLOCK2" parent="." instance=ExtResource("13_jshi3")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -52, 0, -6) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -52.0866, 0, -5.89126)
[node name="CA1_2BLOCK" parent="." instance=ExtResource("9_a53ht")] [node name="CA1_2BLOCK" parent="." instance=ExtResource("9_a53ht")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -24, 0, 34) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -24, 0, 34)
@@ -67,10 +118,26 @@ transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0,
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4, 0, -41.9188) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4, 0, -41.9188)
[node name="CA1_2BLOCK3" parent="." instance=ExtResource("9_a53ht")] [node name="CA1_2BLOCK3" parent="." instance=ExtResource("9_a53ht")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -31.8997, -2, -56.9188) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -31.8997, 0.00892043, -57.8834)
[node name="BasinRoom" parent="." instance=ExtResource("7_1prws")] [node name="BasinRoom" parent="." instance=ExtResource("7_1prws")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -28, 0, -16) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -28.2506, 0, -15.8913)
[node name="A1C1BLOCK3" parent="." instance=ExtResource("12_ip0us")] [node name="A1C1BLOCK3" parent="." instance=ExtResource("12_ip0us")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -40, 0, -14) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -40.2181, 0, -13.8913)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26.816, 0.373, -5.00594)
mesh = SubResource("PlaneMesh_cmu3s")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"
[node name="Node3D" parent="." instance=ExtResource("16_5nwd4")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -49.916, -0.0663075, 58.3364)
[node name="Node3D2" parent="." instance=ExtResource("16_5nwd4")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -76.2821, -0.0663075, 31.9668)

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=13 format=3 uid="uid://cy3rkwnfnrdqu"] [gd_scene load_steps=19 format=3 uid="uid://cy3rkwnfnrdqu"]
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="1_lkcny"] [ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="1_lkcny"]
[ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="2_3toxi"] [ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="2_3toxi"]
@@ -12,6 +12,56 @@
[ext_resource type="PackedScene" uid="uid://dv6umo0bmlyyj" path="res://src/map/dungeon/rooms/Set A/01. Small Block A1.tscn" id="10_x0sjg"] [ext_resource type="PackedScene" uid="uid://dv6umo0bmlyyj" path="res://src/map/dungeon/rooms/Set A/01. Small Block A1.tscn" id="10_x0sjg"]
[ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="11_mc7tc"] [ext_resource type="PackedScene" uid="uid://cdkcvd7pwmr2r" path="res://src/map/dungeon/door/DOORA.tscn" id="11_mc7tc"]
[ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="12_iknoc"] [ext_resource type="PackedScene" uid="uid://cxwyge2s1yswu" path="res://src/map/Placeables/A1-Socket.tscn" id="12_iknoc"]
[ext_resource type="Texture2D" uid="uid://b1w45was2yfjt" path="res://src/minimap/Floor Maps/7C.png" id="13_3toxi"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ehcyt"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("13_3toxi")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_cqkfq"]
material = SubResource("StandardMaterial3D_ehcyt")
size = Vector2(220.5, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="7c" type="Node3D"] [node name="7c" type="Node3D"]
@@ -122,3 +172,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 16.9638)
[node name="CA1_4BLOCK5" parent="." instance=ExtResource("8_tp4x4")] [node name="CA1_4BLOCK5" parent="." instance=ExtResource("8_tp4x4")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 90, 0, -15) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 90, 0, -15)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 61.8826, -1.59075, -9.67056)
mesh = SubResource("PlaneMesh_cqkfq")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=14 format=3 uid="uid://cm31ttcvs26pi"] [gd_scene load_steps=20 format=3 uid="uid://cm31ttcvs26pi"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_rk8c7"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_rk8c7"]
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="2_xq7ii"] [ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="2_xq7ii"]
@@ -13,6 +13,56 @@
[ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="11_nx4ws"] [ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="11_nx4ws"]
[ext_resource type="PackedScene" uid="uid://dp42gsgacl331" path="res://src/map/dungeon/corridors/A2 - Corridor - S-Block .tscn" id="12_o05y5"] [ext_resource type="PackedScene" uid="uid://dp42gsgacl331" path="res://src/map/dungeon/corridors/A2 - Corridor - S-Block .tscn" id="12_o05y5"]
[ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="13_s2787"] [ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="13_s2787"]
[ext_resource type="Texture2D" uid="uid://yj8qw6hm1mtd" path="res://src/minimap/Floor Maps/9A.png" id="14_xq7ii"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m7w4j"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("14_xq7ii")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_53qaf"]
material = SubResource("StandardMaterial3D_m7w4j")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor11a" type="Node3D"] [node name="Floor11a" type="Node3D"]
script = ExtResource("1_rk8c7") script = ExtResource("1_rk8c7")
@@ -85,3 +135,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 55.0032, 0.00976086, 51.2405)
[node name="A2SOCKET2" parent="." instance=ExtResource("13_s2787")] [node name="A2SOCKET2" parent="." instance=ExtResource("13_s2787")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46.9962, 0, 67.3364) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46.9962, 0, 67.3364)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.87809, 0.373, 41.5167)
mesh = SubResource("PlaneMesh_53qaf")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=16 format=3 uid="uid://do1g02ntendw2"] [gd_scene load_steps=22 format=3 uid="uid://do1g02ntendw2"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_pkey0"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_pkey0"]
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="2_gh218"] [ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="2_gh218"]
@@ -15,15 +15,65 @@
[ext_resource type="PackedScene" uid="uid://bbyjnuf1p6w3r" path="res://src/map/dungeon/rooms/Set B/43. Large Block Room A2.tscn" id="13_mj7bb"] [ext_resource type="PackedScene" uid="uid://bbyjnuf1p6w3r" path="res://src/map/dungeon/rooms/Set B/43. Large Block Room A2.tscn" id="13_mj7bb"]
[ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="13_teacq"] [ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="13_teacq"]
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="15_4jnqu"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="15_4jnqu"]
[ext_resource type="Texture2D" uid="uid://bw1456i87jrfo" path="res://src/minimap/Floor Maps/9B.png" id="16_m7w4j"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m7w4j"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("16_m7w4j")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_qclr3"]
material = SubResource("StandardMaterial3D_m7w4j")
size = Vector2(150, 150)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor11a" type="Node3D"] [node name="Floor11a" type="Node3D"]
script = ExtResource("1_pkey0") script = ExtResource("1_pkey0")
[node name="Gallery Room" parent="." instance=ExtResource("3_cdndq")] [node name="Gallery Room" parent="." instance=ExtResource("3_cdndq")]
transform = Transform3D(8.9407e-08, 0, 1, 0, 1, 0, -1, 0, 8.9407e-08, -31, 0.416747, 67) transform = Transform3D(8.9407e-08, 0, 1, 0, 1, 0, -1, 0, 8.9407e-08, -30.8308, 0.342067, 67.0492)
[node name="Floor Exit B" parent="." instance=ExtResource("5_qclr3")] [node name="Floor Exit B" parent="." instance=ExtResource("5_qclr3")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -59, 0, 45) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -59, 0, 44.9741)
[node name="Node3D2" parent="." instance=ExtResource("7_4jnqu")] [node name="Node3D2" parent="." instance=ExtResource("7_4jnqu")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 27) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 27)
@@ -47,7 +97,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30.9962, 0, 67.3364)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -1, 2, 45) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -1, 2, 45)
[node name="Item Transfer Room B" parent="." instance=ExtResource("10_m7w4j")] [node name="Item Transfer Room B" parent="." instance=ExtResource("10_m7w4j")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 20.919, 0, 17.0492) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 24.9602, 0, 17.0492)
[node name="CA2_CROSSBLOCK" parent="." instance=ExtResource("11_qclr3")] [node name="CA2_CROSSBLOCK" parent="." instance=ExtResource("11_qclr3")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -31, 0, 47) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -31, 0, 47)
@@ -59,10 +109,10 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -43, 0, 47)
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -23, 0, 47) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -23, 0, 47)
[node name="CA2_2BLOCK3" parent="." instance=ExtResource("11_xfjxy")] [node name="CA2_2BLOCK3" parent="." instance=ExtResource("11_xfjxy")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 51) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 50.9584)
[node name="LargeBlockRoom" parent="." instance=ExtResource("13_mj7bb")] [node name="LargeBlockRoom" parent="." instance=ExtResource("13_mj7bb")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.11047, 0, 17.2278) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.11047, 0, 17.1799)
[node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("9_o30ug")] [node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("9_o30ug")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 15) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 15)
@@ -71,7 +121,20 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 23) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -31, 0, 23)
[node name="Node3D" parent="." instance=ExtResource("15_4jnqu")] [node name="Node3D" parent="." instance=ExtResource("15_4jnqu")]
transform = Transform3D(2.98023e-08, 0, 1, 0, 1, 0, -1, 0, 2.98023e-08, -39.5016, 0.0752245, 68.9118) transform = Transform3D(2.98023e-08, 0, 1, 0, 1, 0, -1, 0, 2.98023e-08, -39.5016, -0.0529781, 68.9952)
[node name="Node3D3" parent="." instance=ExtResource("15_4jnqu")] [node name="Node3D3" parent="." instance=ExtResource("15_4jnqu")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.0442, 0, 67.4222) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.0442, 0, 67.4222)
[node name="CA2_1BLOCK2" parent="." instance=ExtResource("10_2c4ye")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 13, 0, 19)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.27648, 0.373, 38.915)
mesh = SubResource("PlaneMesh_qclr3")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,8 +1,6 @@
[gd_scene load_steps=16 format=3 uid="uid://dbxx1crrfekkq"] [gd_scene load_steps=19 format=3 uid="uid://dbxx1crrfekkq"]
[ext_resource type="PackedScene" uid="uid://boonyo0b1q1ad" path="res://src/map/dungeon/rooms/Set B/40. Donut Gallery.tscn" id="1_wwgdf"] [ext_resource type="PackedScene" uid="uid://boonyo0b1q1ad" path="res://src/map/dungeon/rooms/Set B/40. Donut Gallery.tscn" id="1_wwgdf"]
[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="2_s6u4m"]
[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="3_7cums"]
[ext_resource type="PackedScene" uid="uid://d1uldtsv8u8vw" path="res://src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn" id="4_axhvs"] [ext_resource type="PackedScene" uid="uid://d1uldtsv8u8vw" path="res://src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn" id="4_axhvs"]
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="5_sa3yf"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="5_sa3yf"]
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="6_g72cf"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="6_g72cf"]
@@ -14,111 +12,123 @@
[ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="12_ubo6d"] [ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="12_ubo6d"]
[ext_resource type="PackedScene" uid="uid://dashmsecoojsf" path="res://src/map/dungeon/corridors/A2 - Corridor - 5 Block .tscn" id="13_2d5al"] [ext_resource type="PackedScene" uid="uid://dashmsecoojsf" path="res://src/map/dungeon/corridors/A2 - Corridor - 5 Block .tscn" id="13_2d5al"]
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="14_u4ual"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="14_u4ual"]
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="14_wwgdf"]
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="15_s6u4m"]
[ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="15_wmnq2"] [ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="15_wmnq2"]
[ext_resource type="Texture2D" uid="uid://d2ovtv4dy0s8r" path="res://src/minimap/Floor Maps/10B.png" id="16_s6u4m"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7cums"]
transparency = 1
shading_mode = 0
albedo_texture = ExtResource("16_s6u4m")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_axhvs"]
material = SubResource("StandardMaterial3D_7cums")
size = Vector2(230, 230)
[node name="10b" type="Node3D"] [node name="10b" type="Node3D"]
[node name="40_DonutGallery" parent="." instance=ExtResource("1_wwgdf")] [node name="40_DonutGallery" parent="." instance=ExtResource("1_wwgdf")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32.0001, 1.98163, -72.9698) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.1786, 1.98163, -76.9217)
[node name="Balcony Room 2" parent="." instance=ExtResource("2_s6u4m")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32, 0, -7)
[node name="Antechamber 3" parent="." instance=ExtResource("3_7cums")]
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 31, 0, 69)
[node name="Antechamber 4" parent="." instance=ExtResource("4_axhvs")] [node name="Antechamber 4" parent="." instance=ExtResource("4_axhvs")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 85, 0, -5) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 77.1801, 0.0630338, -5.02647)
[node name="Column Circle Room" parent="." instance=ExtResource("5_sa3yf")] [node name="Column Circle Room" parent="." instance=ExtResource("5_sa3yf")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31, 0, 43) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.1801, 0.0630338, 42.9318)
[node name="Floor Exit B" parent="." instance=ExtResource("6_g72cf")] [node name="Floor Exit B" parent="." instance=ExtResource("6_g72cf")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -26.1948, 0, -4.41349) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -22.6352, 0.0699236, -5.00816)
[node name="CA2_TBLOCK" parent="." instance=ExtResource("7_yq6g7")] [node name="CA2_TBLOCK" parent="." instance=ExtResource("7_yq6g7")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 38.0001, 0.0797672, -42.9698) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 37.1786, 0.0797672, -46.9217)
[node name="CA2_1BLOCK" parent="." instance=ExtResource("8_lsscn")] [node name="CA2_1BLOCK" parent="." instance=ExtResource("8_lsscn")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 34.0001, 0.0797672, -50.9698) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 33.1786, 0.0797672, -54.9217)
[node name="CA2_CORNERBLOCK2" parent="." instance=ExtResource("9_ptghi")] [node name="CA2_CORNERBLOCK2" parent="." instance=ExtResource("9_ptghi")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 17.9976, 0.0797672, -46.9724) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 17.1761, 0.0797672, -50.9243)
[node name="CA2_CORNERBLOCK3" parent="." instance=ExtResource("9_ptghi")] [node name="CA2_CORNERBLOCK3" parent="." instance=ExtResource("9_ptghi")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18.0001, 0.0797672, -30.9698) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.1786, 0.0797672, -34.9217)
[node name="CA2_CORNERBLOCK4" parent="." instance=ExtResource("9_ptghi")] [node name="CA2_CORNERBLOCK4" parent="." instance=ExtResource("9_ptghi")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 46.0001, 0.0797672, -30.9698) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 45.1786, 0.0797672, -34.9217)
[node name="CA2_TBLOCK2" parent="." instance=ExtResource("7_yq6g7")] [node name="CA2_TBLOCK2" parent="." instance=ExtResource("7_yq6g7")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 26.0001, 0.0797672, -34.9698) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 25.1786, 0.0797672, -38.9217)
[node name="CA2_TBLOCK3" parent="." instance=ExtResource("7_yq6g7")] [node name="CA2_TBLOCK3" parent="." instance=ExtResource("7_yq6g7")]
transform = Transform3D(1.33118e-07, 0, -1, 0, 1, 0, 1, 0, 1.33118e-07, 38, 0, -47) transform = Transform3D(1.33118e-07, 0, -1, 0, 1, 0, 1, 0, 1.33118e-07, 37.1785, 0, -50.9519)
[node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("9_ptghi")] [node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("9_ptghi")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 58, 0, -75) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 57.1785, 0, -78.9519)
[node name="CA2_4BLOCK" parent="." instance=ExtResource("10_yym33")] [node name="CA2_4BLOCK" parent="." instance=ExtResource("10_yym33")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 54, 0, -67) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 53.1785, 0, -70.9519)
[node name="CA2_CORNERBLOCK5" parent="." instance=ExtResource("9_ptghi")] [node name="CA2_CORNERBLOCK5" parent="." instance=ExtResource("9_ptghi")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 58, 0, -43) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 57.1785, 0, -46.9519)
[node name="CA2_3BLOCK" parent="." instance=ExtResource("11_b2sh0")] [node name="CA2_3BLOCK" parent="." instance=ExtResource("11_b2sh0")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -3) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.79705, 0.0462477, -3)
[node name="CA2_2BLOCK" parent="." instance=ExtResource("12_ubo6d")] [node name="CA2_2BLOCK" parent="." instance=ExtResource("12_ubo6d")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 33, 0, 61) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 33.1801, 0.0630338, 60.9318)
[node name="CA2_TBLOCK4" parent="." instance=ExtResource("7_yq6g7")] [node name="CA2_TBLOCK4" parent="." instance=ExtResource("7_yq6g7")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29, 0, 33) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29.1801, 0.0630338, 32.9735)
[node name="CA2_5BLOCK" parent="." instance=ExtResource("13_2d5al")] [node name="CA2_5BLOCK" parent="." instance=ExtResource("13_2d5al")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 37, 0, 29) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 37.1801, 0.0630338, 28.9735)
[node name="CA2_2BLOCK2" parent="." instance=ExtResource("12_ubo6d")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 57, 0, 29)
[node name="CA2_CORNERBLOCK6" parent="." instance=ExtResource("9_ptghi")] [node name="CA2_CORNERBLOCK6" parent="." instance=ExtResource("9_ptghi")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 73, 0, 29) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 65.1801, 0.0630338, 28.9735)
[node name="CA2_TBLOCK5" parent="." instance=ExtResource("7_yq6g7")] [node name="CA2_TBLOCK5" parent="." instance=ExtResource("7_yq6g7")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 65, 0, -7) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 57.1801, 0.0630338, -7.02647)
[node name="CA2_TBLOCK6" parent="." instance=ExtResource("7_yq6g7")] [node name="CA2_TBLOCK6" parent="." instance=ExtResource("7_yq6g7")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 69, 0, 21) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 61.1801, 0.0630338, 20.9735)
[node name="CA2_2BLOCK3" parent="." instance=ExtResource("12_ubo6d")] [node name="CA2_2BLOCK3" parent="." instance=ExtResource("12_ubo6d")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 69, 0, 1) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 61.1801, 0.0630338, 0.973534)
[node name="CA2_CORNERBLOCK7" parent="." instance=ExtResource("9_ptghi")] [node name="CA2_CORNERBLOCK7" parent="." instance=ExtResource("9_ptghi")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 89, 0, 17) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 81.1801, 0.0630338, 16.9735)
[node name="CA2_1BLOCK2" parent="." instance=ExtResource("8_lsscn")] [node name="CA2_1BLOCK2" parent="." instance=ExtResource("8_lsscn")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 77, 0, 17) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 69.1801, 0.0630338, 16.9735)
[node name="CA2_1BLOCK3" parent="." instance=ExtResource("8_lsscn")] [node name="CA2_1BLOCK3" parent="." instance=ExtResource("8_lsscn")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 85, 0, 5) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 77.1801, 0.0630338, 4.97353)
[node name="Node3D" parent="." instance=ExtResource("14_u4ual")] [node name="Node3D" parent="." instance=ExtResource("14_u4ual")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 14, 0, -73) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 13.1785, 0, -76.9519)
[node name="Node3D2" parent="." instance=ExtResource("14_u4ual")]
transform = Transform3D(-4.50227e-08, 0, 1.03, 0, 1.03, 0, -1.03, 0, -4.50227e-08, 62.4016, 0.0582592, -5)
[node name="Node3D3" parent="." instance=ExtResource("14_u4ual")] [node name="Node3D3" parent="." instance=ExtResource("14_u4ual")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 65, 0, -5) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 57, 0, -5)
visible = false
[node name="A2SOCKET" parent="." instance=ExtResource("15_wmnq2")] [node name="A2SOCKET" parent="." instance=ExtResource("15_wmnq2")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32.0408, 0.082971, -26.5918) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.1339, 0.082971, -30.6323)
[node name="A2SOCKET2" parent="." instance=ExtResource("15_wmnq2")] [node name="A2SOCKET2" parent="." instance=ExtResource("15_wmnq2")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 1.78985, -0.0412009, -4.98465) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 4.78985, -0.0412009, -4.98465)
[node name="A2SOCKET3" parent="." instance=ExtResource("15_wmnq2")] [node name="A2SOCKET3" parent="." instance=ExtResource("15_wmnq2")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 2.36, 32.015, 0.0323298, -54.2512) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 2.36, 31.1935, 0.0323298, -58.2031)
[node name="A2SOCKET4" parent="." instance=ExtResource("15_wmnq2")] [node name="A2SOCKET4" parent="." instance=ExtResource("15_wmnq2")]
transform = Transform3D(-4.37114e-08, 0, -2.36, 0, 1, 0, 1, 0, -1.03159e-07, 48.9939, 0.0123208, -72.9918) transform = Transform3D(-4.37114e-08, 0, -2.36, 0, 1, 0, 1, 0, -1.03159e-07, 48.1724, 0.0123208, -76.9437)
[node name="Pedestal Room" parent="." instance=ExtResource("14_wwgdf")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.1801, 0.0630338, 68.7928)
[node name="Pit Room B" parent="." instance=ExtResource("15_s6u4m")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.1431, -2.96971, -4.86244)
[node name="Minimap" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 39.9422, 0, -22.6404)
mesh = SubResource("PlaneMesh_axhvs")

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=15 format=3 uid="uid://cny46rgfqjg8v"] [gd_scene load_steps=21 format=3 uid="uid://cny46rgfqjg8v"]
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="1_33c2s"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="1_33c2s"]
[ext_resource type="PackedScene" uid="uid://b1oayub1dt5ag" path="res://src/map/dungeon/rooms/Set B/31. Dismantled Saint's Room.tscn" id="2_mrx2g"] [ext_resource type="PackedScene" uid="uid://b1oayub1dt5ag" path="res://src/map/dungeon/rooms/Set B/31. Dismantled Saint's Room.tscn" id="2_mrx2g"]
@@ -14,11 +14,61 @@
[ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="10_uv4uh"] [ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="10_uv4uh"]
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="13_mrx2g"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="13_mrx2g"]
[ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="14_2wxas"] [ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="14_2wxas"]
[ext_resource type="Texture2D" uid="uid://dt1ww3q2g8q53" path="res://src/minimap/Floor Maps/11A.png" id="15_wrohb"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6h8wr"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("15_wrohb")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_tr1gi"]
material = SubResource("StandardMaterial3D_6h8wr")
size = Vector2(230, 230)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor11a" type="Node3D"] [node name="Floor11a" type="Node3D"]
[node name="Long Room B" parent="." instance=ExtResource("1_33c2s")] [node name="Long Room B" parent="." instance=ExtResource("1_33c2s")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21, 0, 4) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21, 0, 4.09646)
[node name="Dismantled Saint\'s Room" parent="." instance=ExtResource("2_mrx2g")] [node name="Dismantled Saint\'s Room" parent="." instance=ExtResource("2_mrx2g")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -36.9789, -0.0362931, 12.1852) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -36.9789, -0.0362931, 12.1852)
@@ -33,7 +83,7 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -11, 0
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 2.03379, 52) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 2.03379, 52)
[node name="Floor Exit B" parent="." instance=ExtResource("4_cy864")] [node name="Floor Exit B" parent="." instance=ExtResource("4_cy864")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, -34) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, -33.9563)
[node name="CA2_2BLOCK" parent="." instance=ExtResource("10_uv4uh")] [node name="CA2_2BLOCK" parent="." instance=ExtResource("10_uv4uh")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 45, 0, 6) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 45, 0, 6)
@@ -93,7 +143,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -27, 0, 54.0318)
transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, -11, 0, 30) transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, -11, 0, 30)
[node name="CA2_2BLOCK6" parent="." instance=ExtResource("10_uv4uh")] [node name="CA2_2BLOCK6" parent="." instance=ExtResource("10_uv4uh")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 5, 0, -18) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 5, 0, -17.9563)
[node name="CA2_CORNERBLOCK5" parent="." instance=ExtResource("8_1gngl")] [node name="CA2_CORNERBLOCK5" parent="." instance=ExtResource("8_1gngl")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -11, 0, 2) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -11, 0, 2)
@@ -121,3 +171,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0.0358599, 66.3313)
[node name="A2SOCKET3" parent="." instance=ExtResource("14_2wxas")] [node name="A2SOCKET3" parent="." instance=ExtResource("14_2wxas")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0.0358599, 38.3169) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0.0358599, 38.3169)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.44169, 0.373, 3.07943)
mesh = SubResource("PlaneMesh_tr1gi")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=13 format=3 uid="uid://dcysod8qsq045"] [gd_scene load_steps=19 format=3 uid="uid://dcysod8qsq045"]
[ext_resource type="PackedScene" uid="uid://cypdcaqeylnwl" path="res://src/map/dungeon/rooms/Set B/27. Water Room B.tscn" id="1_rf24f"] [ext_resource type="PackedScene" uid="uid://cypdcaqeylnwl" path="res://src/map/dungeon/rooms/Set B/27. Water Room B.tscn" id="1_rf24f"]
[ext_resource type="PackedScene" uid="uid://cgp60ood1orpr" path="res://src/map/dungeon/rooms/Set B/41. Circle.tscn" id="2_8fjpy"] [ext_resource type="PackedScene" uid="uid://cgp60ood1orpr" path="res://src/map/dungeon/rooms/Set B/41. Circle.tscn" id="2_8fjpy"]
@@ -12,74 +12,146 @@
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="10_hsdcg"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="10_hsdcg"]
[ext_resource type="PackedScene" uid="uid://ds6g6la483j2v" path="res://src/map/dungeon/corridors/A2 - Corridor - Corner .tscn" id="11_ynqwd"] [ext_resource type="PackedScene" uid="uid://ds6g6la483j2v" path="res://src/map/dungeon/corridors/A2 - Corridor - Corner .tscn" id="11_ynqwd"]
[ext_resource type="PackedScene" uid="uid://c3lwv11e6oi7a" path="res://src/map/dungeon/corridors/A2 - Corridor - T-Block.tscn" id="12_1kiud"] [ext_resource type="PackedScene" uid="uid://c3lwv11e6oi7a" path="res://src/map/dungeon/corridors/A2 - Corridor - T-Block.tscn" id="12_1kiud"]
[ext_resource type="Texture2D" uid="uid://bsc0m33t5agi5" path="res://src/minimap/Floor Maps/11B.png" id="13_8fjpy"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_o812o"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("13_8fjpy")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_f5oy5"]
material = SubResource("StandardMaterial3D_o812o")
size = Vector2(230, 230)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor11b" type="Node3D"] [node name="Floor11b" type="Node3D"]
[node name="Water Room B" parent="." instance=ExtResource("1_rf24f")] [node name="Water Room B" parent="." instance=ExtResource("1_rf24f")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 0, 2) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.511, 2.00238, -2.41159)
[node name="40_DonutGallery" parent="." instance=ExtResource("2_8fjpy")] [node name="40_DonutGallery" parent="." instance=ExtResource("2_8fjpy")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 1.97744, 52) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 1.97744, 48)
[node name="40_DonutGallery2" parent="." instance=ExtResource("2_8fjpy")] [node name="40_DonutGallery2" parent="." instance=ExtResource("2_8fjpy")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 1.97744, 100) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 1.97744, 112)
[node name="40_DonutGallery3" parent="." instance=ExtResource("2_8fjpy")] [node name="40_DonutGallery3" parent="." instance=ExtResource("2_8fjpy")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -7, 1.97744, 76) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -15, 1.97744, 80)
[node name="40_DonutGallery4" parent="." instance=ExtResource("2_8fjpy")] [node name="40_DonutGallery4" parent="." instance=ExtResource("2_8fjpy")]
transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 41, 1.97744, 76) transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 49, 1.97744, 80)
[node name="Dismantled Saint\'s Room" parent="." instance=ExtResource("3_o812o")] [node name="Dismantled Saint\'s Room" parent="." instance=ExtResource("3_o812o")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51, 0, 76) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -59, 0, 80)
[node name="Floor Exit B" parent="." instance=ExtResource("4_f5oy5")] [node name="Floor Exit B" parent="." instance=ExtResource("4_f5oy5")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 69.6894, 0, -8.05457) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 70.7122, 0.00486016, -12.0035)
[node name="CA2_CROSSBLOCK" parent="." instance=ExtResource("5_qvftd")] [node name="CA2_CROSSBLOCK" parent="." instance=ExtResource("5_qvftd")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15, 0, 78) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15, 0, 82)
[node name="CA2_1BLOCK" parent="." instance=ExtResource("6_e7l5q")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 19, 0, 70)
[node name="CA2_1BLOCK2" parent="." instance=ExtResource("6_e7l5q")] [node name="CA2_1BLOCK2" parent="." instance=ExtResource("6_e7l5q")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, 78) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, 82)
[node name="CA2_1BLOCK3" parent="." instance=ExtResource("6_e7l5q")] [node name="CA2_1BLOCK3" parent="." instance=ExtResource("6_e7l5q")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 19, 0, 86) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 19, 0, 90)
[node name="CA2_1BLOCK4" parent="." instance=ExtResource("6_e7l5q")] [node name="CA2_1BLOCK4" parent="." instance=ExtResource("6_e7l5q")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0, 78) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0, 82)
[node name="CA2_2BLOCK" parent="." instance=ExtResource("7_i2itk")] [node name="CA2_2BLOCK" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 15, 0, 30) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 15, 0, 26)
[node name="CA2_2BLOCK9" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 15, 0, 66)
[node name="CA2_2BLOCK5" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 15, 0, 90)
[node name="CA2_2BLOCK7" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 7, 0, 78)
[node name="CA2_2BLOCK6" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(1, 0, -1.06581e-14, 0, 1, 0, 1.06581e-14, 0, 1, 27, 0, 82)
[node name="CA2_3BLOCK" parent="." instance=ExtResource("8_25p72")] [node name="CA2_3BLOCK" parent="." instance=ExtResource("8_25p72")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -33, 0, 78) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -41, 0, 82)
[node name="CA2_2BLOCK2" parent="." instance=ExtResource("7_i2itk")] [node name="CA2_2BLOCK2" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 45.6894, 0, -6.05457) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46.7609, 0.00486016, -10.0035)
[node name="CA2_2BLOCK3" parent="." instance=ExtResource("7_i2itk")] [node name="CA2_2BLOCK3" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 55, 0, 78) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 63, 0, 82)
[node name="Pedestal Room" parent="." instance=ExtResource("9_1pfg1")] [node name="Pedestal Room" parent="." instance=ExtResource("9_1pfg1")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 70.8419, 0, 75.9665) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 78.8419, 0, 79.9665)
[node name="Node3D" parent="." instance=ExtResource("10_hsdcg")] [node name="Node3D" parent="." instance=ExtResource("10_hsdcg")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 0, 114) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 0, 118)
[node name="Node3D2" parent="." instance=ExtResource("10_hsdcg")] [node name="Node3D2" parent="." instance=ExtResource("10_hsdcg")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -0.672722, 0, 16) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -0.672722, 0, 12)
[node name="Node3D3" parent="." instance=ExtResource("10_hsdcg")] [node name="Node3D3" parent="." instance=ExtResource("10_hsdcg")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -0.672722, 0, -12) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -0.672722, 0, -16)
[node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("11_ynqwd")] [node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("11_ynqwd")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 41.6917, 0, 13.938) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 42.7632, 0.00486016, 9.9891)
[node name="CA2_TBLOCK" parent="." instance=ExtResource("12_1kiud")] [node name="CA2_TBLOCK" parent="." instance=ExtResource("12_1kiud")]
transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, 33.6917, 0, -10.062) transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, 34.7632, 0.00486016, -14.0109)
[node name="CA2_2BLOCK4" parent="." instance=ExtResource("7_i2itk")] [node name="CA2_2BLOCK4" parent="." instance=ExtResource("7_i2itk")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 37.6917, 0, -2.06202) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 38.7632, 0.00486016, -6.01092)
[node name="CA2_1BLOCK" parent="." instance=ExtResource("6_e7l5q")]
transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 19, 0, 66)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.8659, 0.373, 66.0216)
mesh = SubResource("PlaneMesh_f5oy5")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,11 +1,11 @@
[gd_scene load_steps=18 format=3 uid="uid://5esput2b876e"] [gd_scene load_steps=24 format=3 uid="uid://5esput2b876e"]
[ext_resource type="PackedScene" uid="uid://d1uldtsv8u8vw" path="res://src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn" id="1_565or"] [ext_resource type="PackedScene" uid="uid://d1uldtsv8u8vw" path="res://src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn" id="1_565or"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_kjgo2"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_kjgo2"]
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="3_xwhg8"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="3_xwhg8"]
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="4_5yno2"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="4_5yno2"]
[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="5_ri3ov"] [ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="5_ri3ov"]
[ext_resource type="PackedScene" path="res://src/map/dungeon/corridors/A2 - Corridor - 3 Block .tscn" id="6_qn0li"] [ext_resource type="PackedScene" uid="uid://ck42j6i3df2q5" path="res://src/map/dungeon/corridors/A2 - Corridor - 3 Block .tscn" id="6_qn0li"]
[ext_resource type="PackedScene" uid="uid://ds6g6la483j2v" path="res://src/map/dungeon/corridors/A2 - Corridor - Corner .tscn" id="7_0nx78"] [ext_resource type="PackedScene" uid="uid://ds6g6la483j2v" path="res://src/map/dungeon/corridors/A2 - Corridor - Corner .tscn" id="7_0nx78"]
[ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="8_q3hi4"] [ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="8_q3hi4"]
[ext_resource type="PackedScene" uid="uid://dashmsecoojsf" path="res://src/map/dungeon/corridors/A2 - Corridor - 5 Block .tscn" id="9_dhta4"] [ext_resource type="PackedScene" uid="uid://dashmsecoojsf" path="res://src/map/dungeon/corridors/A2 - Corridor - 5 Block .tscn" id="9_dhta4"]
@@ -17,6 +17,56 @@
[ext_resource type="PackedScene" uid="uid://cetblp4mtwotw" path="res://src/map/dungeon/corridors/A2 - Corridor - 1 Block.tscn" id="15_vi6hn"] [ext_resource type="PackedScene" uid="uid://cetblp4mtwotw" path="res://src/map/dungeon/corridors/A2 - Corridor - 1 Block.tscn" id="15_vi6hn"]
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="16_3wfmp"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="16_3wfmp"]
[ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="17_n1o17"] [ext_resource type="PackedScene" uid="uid://kbrt3cos7udm" path="res://src/map/Placeables/A2-Socket.tscn" id="17_n1o17"]
[ext_resource type="Texture2D" uid="uid://dk6uy58f2vgg1" path="res://src/minimap/Floor Maps/12A.png" id="18_hngai"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n17av"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("18_hngai")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_vi6hn"]
material = SubResource("StandardMaterial3D_n17av")
size = Vector2(230, 230)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor12a" type="Node3D"] [node name="Floor12a" type="Node3D"]
script = ExtResource("1_kjgo2") script = ExtResource("1_kjgo2")
@@ -101,3 +151,13 @@ transform = Transform3D(-4.37114e-08, 0, 3.585, 0, 1, 0, -1, 0, -1.56705e-07, -6
[node name="A2SOCKET2" parent="." instance=ExtResource("17_n1o17")] [node name="A2SOCKET2" parent="." instance=ExtResource("17_n1o17")]
transform = Transform3D(-1, 0, -3.13411e-07, 0, 1, 0, 8.74228e-08, 0, -3.585, -82.0868, 0.0243301, -7.10035) transform = Transform3D(-1, 0, -3.13411e-07, 0, 1, 0, 8.74228e-08, 0, -3.585, -82.0868, 0.0243301, -7.10035)
[node name="Minimap" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.859, 0.373, 42.4854)
mesh = SubResource("PlaneMesh_vi6hn")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=18 format=3 uid="uid://bgtrwrpmlnlc3"] [gd_scene load_steps=24 format=3 uid="uid://bgtrwrpmlnlc3"]
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="1_ac666"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="1_ac666"]
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="2_ek3kj"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="2_ek3kj"]
@@ -17,6 +17,56 @@
[ext_resource type="PackedScene" uid="uid://ck42j6i3df2q5" path="res://src/map/dungeon/corridors/A2 - Corridor - 3 Block .tscn" id="15_chw2v"] [ext_resource type="PackedScene" uid="uid://ck42j6i3df2q5" path="res://src/map/dungeon/corridors/A2 - Corridor - 3 Block .tscn" id="15_chw2v"]
[ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="16_ebkqg"] [ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="16_ebkqg"]
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="17_aom43"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="17_aom43"]
[ext_resource type="Texture2D" uid="uid://dli2i2bbd8sv8" path="res://src/minimap/Floor Maps/12B.png" id="18_ek3kj"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ifhq2"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("18_ek3kj")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_nlvua"]
material = SubResource("StandardMaterial3D_ifhq2")
size = Vector2(230, 230)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Node3D" type="Node3D"] [node name="Node3D" type="Node3D"]
@@ -24,61 +74,61 @@
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 45, 0, -89) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 45, 0, -89)
[node name="Column Circle Room" parent="." instance=ExtResource("2_ek3kj")] [node name="Column Circle Room" parent="." instance=ExtResource("2_ek3kj")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -48.8259, 0, -19) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -50.9746, 0, -19)
[node name="Water Room B" parent="." instance=ExtResource("3_ifhq2")] [node name="Water Room B" parent="." instance=ExtResource("3_ifhq2")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -42.1755, 0, -65) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -43.7445, 0, -65)
[node name="Long Room B" parent="." instance=ExtResource("4_nlvua")] [node name="Long Room B" parent="." instance=ExtResource("4_nlvua")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15, 0, -47) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15, 0, -47)
[node name="Pedestal Room" parent="." instance=ExtResource("5_ar7g0")] [node name="Pedestal Room" parent="." instance=ExtResource("5_ar7g0")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -19.004, 0, -19.036) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -21.1527, 0, -19.036)
[node name="Antechamber 4" parent="." instance=ExtResource("6_b7a0s")] [node name="Antechamber 4" parent="." instance=ExtResource("6_b7a0s")]
transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, -1, 0, -79) transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, -1, 0, -79)
[node name="Gallery Room" parent="." instance=ExtResource("7_echw5")] [node name="Gallery Room" parent="." instance=ExtResource("7_echw5")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -90.8259, 0, -73) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -92.9745, 0, -73)
[node name="Antechamber 3" parent="." instance=ExtResource("8_svhk2")] [node name="Antechamber 3" parent="." instance=ExtResource("8_svhk2")]
transform = Transform3D(-1.17225e-07, 0, -1, 0, 1, 0, 1, 0, -1.17225e-07, -78.8259, 0, -35.0188) transform = Transform3D(-1.17225e-07, 0, -1, 0, 1, 0, 1, 0, -1.17225e-07, -80.9745, 0, -35.0188)
[node name="CA2_SBLOCK" parent="." instance=ExtResource("9_081gv")] [node name="CA2_SBLOCK" parent="." instance=ExtResource("9_081gv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70.8259, 0, -61) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -72.9745, 0, -61)
[node name="CA2_ZBLOCK" parent="." instance=ExtResource("10_g8jo1")] [node name="CA2_ZBLOCK" parent="." instance=ExtResource("10_g8jo1")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -78.8259, 0, -61) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -80.9745, 0, -61)
[node name="CA2_TBLOCK" parent="." instance=ExtResource("11_u24y0")] [node name="CA2_TBLOCK" parent="." instance=ExtResource("11_u24y0")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -70.8259, 0, -57) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -72.9745, 0, -57)
[node name="CA2_TBLOCK2" parent="." instance=ExtResource("11_u24y0")] [node name="CA2_TBLOCK2" parent="." instance=ExtResource("11_u24y0")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -94.8259, 0, -49) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -96.9745, 0, -49)
[node name="CA2_1BLOCK" parent="." instance=ExtResource("12_x7t15")] [node name="CA2_1BLOCK" parent="." instance=ExtResource("12_x7t15")]
transform = Transform3D(2.98023e-08, 0, 1, 0, 1, 0, -1, 0, 2.98023e-08, -90.8259, 0, -61) transform = Transform3D(2.98023e-08, 0, 1, 0, 1, 0, -1, 0, 2.98023e-08, -92.9745, 0, -61)
[node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("13_ct6ie")] [node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("13_ct6ie")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -94.8259, 0, -37) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -96.9745, 0, -37)
[node name="CA2_4BLOCK" parent="." instance=ExtResource("14_beavv")] [node name="CA2_4BLOCK" parent="." instance=ExtResource("14_beavv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -86.8259, 0, -53) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -88.9745, 0, -53)
[node name="CA2_1BLOCK2" parent="." instance=ExtResource("12_x7t15")] [node name="CA2_1BLOCK2" parent="." instance=ExtResource("12_x7t15")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -90.8259, 0, -45) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -92.9745, 0, -45)
[node name="Node3D" parent="." instance=ExtResource("15_chw2v")] [node name="Node3D" parent="." instance=ExtResource("15_chw2v")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -66.8259, 0, -49) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -68.9745, 0, -49)
[node name="CA2_TBLOCK3" parent="." instance=ExtResource("11_u24y0")] [node name="CA2_TBLOCK3" parent="." instance=ExtResource("11_u24y0")]
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -62.8259, 0, -37) transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -64.9745, 0, -37)
[node name="CA2_CORNERBLOCK2" parent="." instance=ExtResource("13_ct6ie")] [node name="CA2_CORNERBLOCK2" parent="." instance=ExtResource("13_ct6ie")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66.8259, 0, -17) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -68.9745, 0, -17)
[node name="Node3D2" parent="." instance=ExtResource("15_chw2v")] [node name="Node3D2" parent="." instance=ExtResource("15_chw2v")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38.8259, 0, -17) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -40.9746, 0, -17)
[node name="CA2_4BLOCK2" parent="." instance=ExtResource("14_beavv")] [node name="CA2_4BLOCK2" parent="." instance=ExtResource("14_beavv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25, 0, -77) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25, 0, -77)
@@ -102,7 +152,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 35, 0, -65)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 43, 0, -61) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 43, 0, -61)
[node name="Node3D3" parent="." instance=ExtResource("17_aom43")] [node name="Node3D3" parent="." instance=ExtResource("17_aom43")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -41.8259, 0, -93) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -43.3949, 0, -93)
[node name="Node3D4" parent="." instance=ExtResource("17_aom43")] [node name="Node3D4" parent="." instance=ExtResource("17_aom43")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -89) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -89)
@@ -117,4 +167,14 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -6, 0,
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29, 0, -34) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 29, 0, -34)
[node name="Node3D8" parent="." instance=ExtResource("17_aom43")] [node name="Node3D8" parent="." instance=ExtResource("17_aom43")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -24.4424, 0, -51) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -24.6588, 0, -51)
[node name="Minimap" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -39.9698, 0.373, -79.843)
mesh = SubResource("PlaneMesh_nlvua")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=13 format=3 uid="uid://bvo7yqej1g7sx"] [gd_scene load_steps=19 format=3 uid="uid://bvo7yqej1g7sx"]
[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="1_s11q7"] [ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="1_s11q7"]
[ext_resource type="PackedScene" uid="uid://d2k2v4bcybx3k" path="res://src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn" id="2_ot23k"] [ext_resource type="PackedScene" uid="uid://d2k2v4bcybx3k" path="res://src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn" id="2_ot23k"]
@@ -10,8 +10,58 @@
[ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="8_4u3iy"] [ext_resource type="PackedScene" uid="uid://bp8dy2pd56gkm" path="res://src/map/dungeon/corridors/A2 - Corridor - 2 Block .tscn" id="8_4u3iy"]
[ext_resource type="PackedScene" uid="uid://cetblp4mtwotw" path="res://src/map/dungeon/corridors/A2 - Corridor - 1 Block.tscn" id="9_h57ej"] [ext_resource type="PackedScene" uid="uid://cetblp4mtwotw" path="res://src/map/dungeon/corridors/A2 - Corridor - 1 Block.tscn" id="9_h57ej"]
[ext_resource type="PackedScene" uid="uid://c3lwv11e6oi7a" path="res://src/map/dungeon/corridors/A2 - Corridor - T-Block.tscn" id="10_l83a4"] [ext_resource type="PackedScene" uid="uid://c3lwv11e6oi7a" path="res://src/map/dungeon/corridors/A2 - Corridor - T-Block.tscn" id="10_l83a4"]
[ext_resource type="PackedScene" path="res://src/map/dungeon/corridors/A2 - Corridor - 3 Block .tscn" id="11_r7cya"] [ext_resource type="PackedScene" uid="uid://ck42j6i3df2q5" path="res://src/map/dungeon/corridors/A2 - Corridor - 3 Block .tscn" id="11_r7cya"]
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="12_mwtuj"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="12_mwtuj"]
[ext_resource type="Texture2D" uid="uid://cokfcgjm0egso" path="res://src/minimap/Floor Maps/13A.png" id="13_t7n4i"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_buew1"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("13_t7n4i")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_wklws"]
material = SubResource("StandardMaterial3D_buew1")
size = Vector2(230, 230)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor13" type="Node3D"] [node name="Floor13" type="Node3D"]
@@ -25,37 +75,34 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25, 0, 28)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -15.1831, 0, -34) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -15.1831, 0, -34)
[node name="42_SmallBlockRoomA2" parent="." instance=ExtResource("4_45o3f")] [node name="42_SmallBlockRoomA2" parent="." instance=ExtResource("4_45o3f")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -65.8339) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.966557, 0, -65.7144)
[node name="42_SmallBlockRoomA3" parent="." instance=ExtResource("4_45o3f")] [node name="42_SmallBlockRoomA3" parent="." instance=ExtResource("4_45o3f")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -39.0277, 0, -9.86162) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -35.0033, 0, -9.86162)
[node name="Floor Exit B" parent="." instance=ExtResource("5_0jlcm")] [node name="Floor Exit B" parent="." instance=ExtResource("5_0jlcm")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -39, 0, -40) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34.9679, 0, -40)
[node name="Column Circle Room" parent="." instance=ExtResource("6_atul7")] [node name="Column Circle Room" parent="." instance=ExtResource("6_atul7")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 1, 0, 14) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 1, 0, 14)
[node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("7_pr2ha")] [node name="CA2_CORNERBLOCK" parent="." instance=ExtResource("7_pr2ha")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 27, 0, -68) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 27, 0, -67.8662)
[node name="CA2_CORNERBLOCK2" parent="." instance=ExtResource("7_pr2ha")] [node name="CA2_CORNERBLOCK2" parent="." instance=ExtResource("7_pr2ha")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -17, 0, -68) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -17, 0, -67.8662)
[node name="CA2_2BLOCK" parent="." instance=ExtResource("8_4u3iy")] [node name="CA2_2BLOCK" parent="." instance=ExtResource("8_4u3iy")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -17, 0, -60) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -17, 0, -59.8662)
[node name="CA2_2BLOCK2" parent="." instance=ExtResource("8_4u3iy")] [node name="CA2_2BLOCK2" parent="." instance=ExtResource("8_4u3iy")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, -64) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, -63.8662)
[node name="CA2_2BLOCK3" parent="." instance=ExtResource("8_4u3iy")] [node name="CA2_2BLOCK3" parent="." instance=ExtResource("8_4u3iy")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 23, 0, -60) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 23, 0, -59.8662)
[node name="CA2_2BLOCK4" parent="." instance=ExtResource("8_4u3iy")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -29, 0, -8)
[node name="CA2_1BLOCK" parent="." instance=ExtResource("9_h57ej")] [node name="CA2_1BLOCK" parent="." instance=ExtResource("9_h57ej")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -37, 0, -20) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -33, 0, -20)
[node name="CA2_TBLOCK" parent="." instance=ExtResource("10_l83a4")] [node name="CA2_TBLOCK" parent="." instance=ExtResource("10_l83a4")]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -13, 0, -16) transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -13, 0, -16)
@@ -76,25 +123,37 @@ transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, 23, 0, 0)
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -9, 0, 16) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -9, 0, 16)
[node name="CA2_CORNERBLOCK3" parent="." instance=ExtResource("7_pr2ha")] [node name="CA2_CORNERBLOCK3" parent="." instance=ExtResource("7_pr2ha")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -41, 0, 16) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -37, 0, 16)
[node name="CA2_2BLOCK7" parent="." instance=ExtResource("8_4u3iy")] [node name="CA2_2BLOCK7" parent="." instance=ExtResource("8_4u3iy")]
transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -41, 0, 0) transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -37, 0, 0)
[node name="Node3D2" parent="." instance=ExtResource("11_r7cya")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -33, 0, 16)
[node name="Node3D3" parent="." instance=ExtResource("12_mwtuj")] [node name="Node3D3" parent="." instance=ExtResource("12_mwtuj")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -45.504, 0, -10) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -41.504, 0, -10)
[node name="Node3D4" parent="." instance=ExtResource("12_mwtuj")] [node name="Node3D4" parent="." instance=ExtResource("12_mwtuj")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -59.4042) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -59.2704)
[node name="Node3D5" parent="." instance=ExtResource("12_mwtuj")] [node name="Node3D5" parent="." instance=ExtResource("12_mwtuj")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -72.5287) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -72.3949)
[node name="Node3D6" parent="." instance=ExtResource("12_mwtuj")] [node name="Node3D6" parent="." instance=ExtResource("12_mwtuj")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 51.3776, 0, -26) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 51.3776, 0, -26)
[node name="Node3D7" parent="." instance=ExtResource("12_mwtuj")] [node name="Node3D7" parent="." instance=ExtResource("12_mwtuj")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -1.40893, 0, -26.123) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -1.40893, 0, -26.123)
[node name="Minimap" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34.0523, 0.373, 15.9884)
mesh = SubResource("PlaneMesh_wklws")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
[node name="CA2_1BLOCK2" parent="." instance=ExtResource("9_h57ej")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25, 0, -8)
[node name="CA2_2BLOCK4" parent="." instance=ExtResource("8_4u3iy")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -29, 0, 16)

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=17 format=3 uid="uid://cb4oxe2luyn64"] [gd_scene load_steps=23 format=3 uid="uid://cb4oxe2luyn64"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_2tuyg"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_2tuyg"]
[ext_resource type="PackedScene" uid="uid://b6akxaacr8jd2" path="res://src/map/dungeon/rooms/Set B/33. Puer's Room.tscn" id="2_abunl"] [ext_resource type="PackedScene" uid="uid://b6akxaacr8jd2" path="res://src/map/dungeon/rooms/Set B/33. Puer's Room.tscn" id="2_abunl"]
@@ -16,6 +16,56 @@
[ext_resource type="PackedScene" uid="uid://bnhcth7efq2da" path="res://src/map/dungeon/corridors/A2 - Corridor - 4 Block .tscn" id="14_d8lgq"] [ext_resource type="PackedScene" uid="uid://bnhcth7efq2da" path="res://src/map/dungeon/corridors/A2 - Corridor - 4 Block .tscn" id="14_d8lgq"]
[ext_resource type="PackedScene" uid="uid://e17ephn3qhyp" path="res://src/map/dungeon/corridors/A2 - Corridor - Cross Block.tscn" id="15_whn3o"] [ext_resource type="PackedScene" uid="uid://e17ephn3qhyp" path="res://src/map/dungeon/corridors/A2 - Corridor - Cross Block.tscn" id="15_whn3o"]
[ext_resource type="PackedScene" uid="uid://c3lwv11e6oi7a" path="res://src/map/dungeon/corridors/A2 - Corridor - T-Block.tscn" id="16_b35rm"] [ext_resource type="PackedScene" uid="uid://c3lwv11e6oi7a" path="res://src/map/dungeon/corridors/A2 - Corridor - T-Block.tscn" id="16_b35rm"]
[ext_resource type="Texture2D" uid="uid://p2jg0x07yvis" path="res://src/minimap/Floor Maps/14A.png" id="17_yc1xo"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_buew1"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("17_yc1xo")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_xw3tf"]
material = SubResource("StandardMaterial3D_buew1")
size = Vector2(230, 230)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor17a" type="Node3D"] [node name="Floor17a" type="Node3D"]
script = ExtResource("1_2tuyg") script = ExtResource("1_2tuyg")
@@ -36,7 +86,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 0, -16)
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -24) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -24)
[node name="Water Room B" parent="." instance=ExtResource("6_r0keh")] [node name="Water Room B" parent="." instance=ExtResource("6_r0keh")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 8, 0, 61) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 8.44059, 2.03545, 62.6712)
[node name="Column Circle Room" parent="." instance=ExtResource("7_372ac")] [node name="Column Circle Room" parent="." instance=ExtResource("7_372ac")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 22) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 22)
@@ -48,7 +98,7 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -44, 0
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 36) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 36)
[node name="Item Transfer Room B" parent="." instance=ExtResource("10_f153f")] [node name="Item Transfer Room B" parent="." instance=ExtResource("10_f153f")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -40, 0, 61) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -40.0735, 0, 61.9255)
[node name="Antechamber 3" parent="." instance=ExtResource("11_f3bpy")] [node name="Antechamber 3" parent="." instance=ExtResource("11_f3bpy")]
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 38, 0, 0) transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 38, 0, 0)
@@ -69,7 +119,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 0, 40)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -8, 0, 20) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -8, 0, 20)
[node name="Node3D6" parent="." instance=ExtResource("12_ci7tj")] [node name="Node3D6" parent="." instance=ExtResource("12_ci7tj")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -32, 0, 63) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -32.0735, 0, 63.9255)
[node name="Node3D12" parent="." instance=ExtResource("5_rkbc4")] [node name="Node3D12" parent="." instance=ExtResource("5_rkbc4")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 36, 0, 12) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 36, 0, 12)
@@ -82,3 +132,12 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 16, 0,
[node name="Node3D13" parent="." instance=ExtResource("4_xw3tf")] [node name="Node3D13" parent="." instance=ExtResource("4_xw3tf")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 36, 0, 40) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 36, 0, 40)
[node name="Minimap" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.60067, -1.96918, 40.358)
mesh = SubResource("PlaneMesh_xw3tf")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=18 format=3 uid="uid://djqrniwn44lgj"] [gd_scene load_steps=24 format=3 uid="uid://djqrniwn44lgj"]
[ext_resource type="PackedScene" uid="uid://b6akxaacr8jd2" path="res://src/map/dungeon/rooms/Set B/33. Puer's Room.tscn" id="1_5yts4"] [ext_resource type="PackedScene" uid="uid://b6akxaacr8jd2" path="res://src/map/dungeon/rooms/Set B/33. Puer's Room.tscn" id="1_5yts4"]
[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="2_xnftf"] [ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="2_xnftf"]
@@ -17,6 +17,56 @@
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="15_xbwto"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="15_xbwto"]
[ext_resource type="PackedScene" uid="uid://d2k2v4bcybx3k" path="res://src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn" id="16_6ljmo"] [ext_resource type="PackedScene" uid="uid://d2k2v4bcybx3k" path="res://src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn" id="16_6ljmo"]
[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="17_on6xm"] [ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="17_on6xm"]
[ext_resource type="Texture2D" uid="uid://1jhfhm04qcgb" path="res://src/minimap/Floor Maps/14B.png" id="18_xnftf"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_buew1"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("18_xnftf")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_x4fnm"]
material = SubResource("StandardMaterial3D_buew1")
size = Vector2(230, 230)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor14b" type="Node3D"] [node name="Floor14b" type="Node3D"]
@@ -24,13 +74,13 @@
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 26) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 26)
[node name="Floor Exit B" parent="." instance=ExtResource("2_xnftf")] [node name="Floor Exit B" parent="." instance=ExtResource("2_xnftf")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -20, 0, -58) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -20, 0, -58.0208)
[node name="40_DonutGallery" parent="." instance=ExtResource("3_x4fnm")] [node name="40_DonutGallery" parent="." instance=ExtResource("3_x4fnm")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 110, 2, 26.062) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 109.964, 2, 26.062)
[node name="Pit Room B" parent="." instance=ExtResource("4_jh4jv")] [node name="Pit Room B" parent="." instance=ExtResource("4_jh4jv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, -3, 14) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21.9722, -3, 14.1393)
[node name="Gallery Room" parent="." instance=ExtResource("5_d87u7")] [node name="Gallery Room" parent="." instance=ExtResource("5_d87u7")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 27.9462, 0, -44) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 27.9462, 0, -44)
@@ -69,7 +119,7 @@ transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 12, 0,
transform = Transform3D(-1, 0, 8.9407e-08, 0, 1, 0, -8.9407e-08, 0, -1, 28, 0, -36) transform = Transform3D(-1, 0, 8.9407e-08, 0, 1, 0, -8.9407e-08, 0, -1, 28, 0, -36)
[node name="CA2_1BLOCK5" parent="." instance=ExtResource("7_ve4gf")] [node name="CA2_1BLOCK5" parent="." instance=ExtResource("7_ve4gf")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24, 0, -20) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 28, 0, -20)
[node name="CA2_TBLOCK3" parent="." instance=ExtResource("11_f5okq")] [node name="CA2_TBLOCK3" parent="." instance=ExtResource("11_f5okq")]
transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -4, 0, -60) transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -4, 0, -60)
@@ -93,25 +143,25 @@ transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 28, 0,
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 4, 0, -24) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 4, 0, -24)
[node name="CA2_CORNERBLOCK6" parent="." instance=ExtResource("8_jygnb")] [node name="CA2_CORNERBLOCK6" parent="." instance=ExtResource("8_jygnb")]
transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, -60, 0, -36) transform = Transform3D(2.98023e-08, 0, -1, 0, 1, 0, 1, 0, 2.98023e-08, -59.9087, 0, -36)
[node name="CA2_5BLOCK2" parent="." instance=ExtResource("9_jeunu")] [node name="CA2_5BLOCK2" parent="." instance=ExtResource("9_jeunu")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -40, 0, -32) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -39.9087, 0, -32)
[node name="Node3D" parent="." instance=ExtResource("13_0jf3o")] [node name="Node3D" parent="." instance=ExtResource("13_0jf3o")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -52, 0, -32) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.9087, 0, -32)
[node name="CA2_5BLOCK3" parent="." instance=ExtResource("9_jeunu")] [node name="CA2_5BLOCK3" parent="." instance=ExtResource("9_jeunu")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -60, 0, -28) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -59.9087, 0, -28)
[node name="CA2_CORNERBLOCK7" parent="." instance=ExtResource("8_jygnb")] [node name="CA2_CORNERBLOCK7" parent="." instance=ExtResource("8_jygnb")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -60, 0, 16) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -59.9087, 0, 16)
[node name="CA2_1BLOCK6" parent="." instance=ExtResource("7_ve4gf")] [node name="CA2_1BLOCK6" parent="." instance=ExtResource("7_ve4gf")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -52, 0, 16) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -51.9087, 0, 16)
[node name="CA2_4BLOCK3" parent="." instance=ExtResource("10_oapja")] [node name="CA2_4BLOCK3" parent="." instance=ExtResource("10_oapja")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -60, 0, -8) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -59.9087, 0, -8)
[node name="Node3D2" parent="." instance=ExtResource("13_0jf3o")] [node name="Node3D2" parent="." instance=ExtResource("13_0jf3o")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 24, 0, -20) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 24, 0, -20)
@@ -123,22 +173,25 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24, 0, 28)
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32, 0, 28) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32, 0, 28)
[node name="CA2_1BLOCK7" parent="." instance=ExtResource("7_ve4gf")] [node name="CA2_1BLOCK7" parent="." instance=ExtResource("7_ve4gf")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -20, 0, 43.7931) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -19.9087, 0, 43.7931)
[node name="Pedestal Room" parent="." instance=ExtResource("14_uhe7u")] [node name="Pedestal Room" parent="." instance=ExtResource("14_uhe7u")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 51.669) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21.9087, 0, 51.669)
[node name="Node3D3" parent="." instance=ExtResource("15_xbwto")] [node name="Node3D3" parent="." instance=ExtResource("15_xbwto")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -12.5997) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0.17757, -12.3863)
[node name="Node3D6" parent="." instance=ExtResource("15_xbwto")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 65.9777, 0.17757, 7.60124)
[node name="Node3D4" parent="." instance=ExtResource("13_0jf3o")] [node name="Node3D4" parent="." instance=ExtResource("13_0jf3o")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 84, 0, 28) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 83.9641, 0, 28)
[node name="CA2_2BLOCK2" parent="." instance=ExtResource("12_ku5hr")] [node name="CA2_2BLOCK2" parent="." instance=ExtResource("12_ku5hr")]
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 64, 0, 44) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 64, 0, 44)
[node name="Item Transfer Room B" parent="." instance=ExtResource("16_6ljmo")] [node name="Item Transfer Room B" parent="." instance=ExtResource("16_6ljmo")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 60) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 59.9774)
[node name="Column Circle Room" parent="." instance=ExtResource("17_on6xm")] [node name="Column Circle Room" parent="." instance=ExtResource("17_on6xm")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -18) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -18)
@@ -147,4 +200,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, -18)
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 44, 0, -36) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 44, 0, -36)
[node name="Node3D5" parent="." instance=ExtResource("15_xbwto")] [node name="Node3D5" parent="." instance=ExtResource("15_xbwto")]
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 124.411, 0, 26.1087) transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 124.339, 0, 26.1087)
[node name="Minimap" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34.305, 0.373, 16.999)
mesh = SubResource("PlaneMesh_x4fnm")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=15 format=3 uid="uid://cidl1mnmrg2xe"] [gd_scene load_steps=21 format=3 uid="uid://cidl1mnmrg2xe"]
[ext_resource type="PackedScene" uid="uid://dttk7gis5ibge" path="res://src/map/dungeon/rooms/Set B/30. Void Room.tscn" id="1_0ns77"] [ext_resource type="PackedScene" uid="uid://dttk7gis5ibge" path="res://src/map/dungeon/rooms/Set B/30. Void Room.tscn" id="1_0ns77"]
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_j4xyb"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_j4xyb"]
@@ -14,6 +14,56 @@
[ext_resource type="PackedScene" uid="uid://cetblp4mtwotw" path="res://src/map/dungeon/corridors/A2 - Corridor - 1 Block.tscn" id="10_71nlt"] [ext_resource type="PackedScene" uid="uid://cetblp4mtwotw" path="res://src/map/dungeon/corridors/A2 - Corridor - 1 Block.tscn" id="10_71nlt"]
[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="11_1kiu7"] [ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="11_1kiu7"]
[ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="13_feqgb"] [ext_resource type="PackedScene" uid="uid://dqew5q3bogxg7" path="res://src/map/dungeon/door/DOORB.tscn" id="13_feqgb"]
[ext_resource type="Texture2D" uid="uid://bmurnnk6xds62" path="res://src/minimap/Floor Maps/15.png" id="15_rdhsq"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_yjv8c"]
transparency = 1
cull_mode = 2
shading_mode = 0
albedo_texture = ExtResource("15_rdhsq")
texture_filter = 0
[sub_resource type="PlaneMesh" id="PlaneMesh_ur1qn"]
material = SubResource("StandardMaterial3D_yjv8c")
size = Vector2(250, 250)
[sub_resource type="Animation" id="Animation_iert2"]
resource_name = "Pulse"
length = 2.0125
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1, 1.96667),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 0,
"values": [Color(0.85, 0.85, 0.85, 1), Color(1, 1, 1, 1), Color(0.85, 0.85, 0.85, 1)]
}
[sub_resource type="Animation" id="Animation_xsgnx"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:mesh:material:albedo_color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_gya62"]
_data = {
&"Pulse": SubResource("Animation_iert2"),
&"RESET": SubResource("Animation_xsgnx")
}
[node name="Floor18a" type="Node3D"] [node name="Floor18a" type="Node3D"]
script = ExtResource("1_j4xyb") script = ExtResource("1_j4xyb")
@@ -22,22 +72,22 @@ script = ExtResource("1_j4xyb")
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -52.748, 2, 1.46454) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -52.748, 2, 1.46454)
[node name="GesthemiisRoom" parent="." instance=ExtResource("2_x4e5m")] [node name="GesthemiisRoom" parent="." instance=ExtResource("2_x4e5m")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -63.0175, 0, -22.5276) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62.9271, 0, -22.5276)
[node name="Item Transfer Room B" parent="." instance=ExtResource("3_owkcf")] [node name="Item Transfer Room B" parent="." instance=ExtResource("3_owkcf")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -91, 0, -12) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -90.8914, 0, -12)
[node name="Long Room B" parent="." instance=ExtResource("4_2lxx6")] [node name="Long Room B" parent="." instance=ExtResource("4_2lxx6")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5, 0, -26) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.95479, -0.0310812, -25.877)
[node name="Floor Exit B" parent="." instance=ExtResource("5_h0mb2")] [node name="Floor Exit B" parent="." instance=ExtResource("5_h0mb2")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -91, 0, -48) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -90.8914, 0, -48)
[node name="Long Room B2" parent="." instance=ExtResource("4_2lxx6")] [node name="Long Room B2" parent="." instance=ExtResource("4_2lxx6")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 47, 0, -26) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 47, 0, -25.877)
[node name="Pedestal Room" parent="." instance=ExtResource("11_1kiu7")] [node name="Pedestal Room" parent="." instance=ExtResource("11_1kiu7")]
transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 78.715, 0, -26) transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 78.7677, 0, -25.9825)
[node name="Eden Pillar5" parent="." instance=ExtResource("8_g0a8e")] [node name="Eden Pillar5" parent="." instance=ExtResource("8_g0a8e")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.64635, 2.16418, -15.345) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.64635, 2.16418, -15.345)
@@ -78,7 +128,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -19.0957, 2.16418, -35.8279)
[node name="Doors & Corridors" type="Node3D" parent="."] [node name="Doors & Corridors" type="Node3D" parent="."]
[node name="Node3D2" parent="Doors & Corridors" instance=ExtResource("10_71nlt")] [node name="Node3D2" parent="Doors & Corridors" instance=ExtResource("10_71nlt")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -85, 0, -24) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -84.8914, 0, -24)
[node name="Node3D8" parent="Doors & Corridors" instance=ExtResource("10_71nlt")] [node name="Node3D8" parent="Doors & Corridors" instance=ExtResource("10_71nlt")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21, 0, 11.5439) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21, 0, 11.5439)
@@ -105,7 +155,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 61, 0, -14.0083)
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 61, 0, -38.14) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 61, 0, -38.14)
[node name="Node3D3" parent="Doors & Corridors" instance=ExtResource("7_1e570")] [node name="Node3D3" parent="Doors & Corridors" instance=ExtResource("7_1e570")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -45, 0, -24) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -44.8811, 0, -23.934)
[node name="Node3D4" parent="Doors & Corridors" instance=ExtResource("8_lg0yj")] [node name="Node3D4" parent="Doors & Corridors" instance=ExtResource("8_lg0yj")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17, 0, 11.5439) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17, 0, 11.5439)
@@ -117,7 +167,17 @@ transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 11, 0,
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 7, 0, -12.4561) transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 7, 0, -12.4561)
[node name="Node3D" parent="Doors & Corridors" instance=ExtResource("6_ku5ap")] [node name="Node3D" parent="Doors & Corridors" instance=ExtResource("6_ku5ap")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -93, 0, -20) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -92.8914, 0, -20)
[node name="Node3D7" parent="Doors & Corridors" instance=ExtResource("10_71nlt")] [node name="Node3D7" parent="Doors & Corridors" instance=ExtResource("10_71nlt")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.0147, -0.0109025, -24.074) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.0356, -0.0362813, -23.9731)
[node name="Minimap2" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.04739, -2.4605, -26.4829)
mesh = SubResource("PlaneMesh_ur1qn")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap2"]
libraries = {
&"": SubResource("AnimationLibrary_gya62")
}
autoplay = "Pulse"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dp3bi30tpgp78"
path="res://.godot/imported/10A.png-ca0d0568fa1a54637ed94cb402b61b0d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/10A.png"
dest_files=["res://.godot/imported/10A.png-ca0d0568fa1a54637ed94cb402b61b0d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d2ovtv4dy0s8r"
path="res://.godot/imported/10B.png-6a6552c4cf41706ed10516daea78bd0e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/10B.png"
dest_files=["res://.godot/imported/10B.png-6a6552c4cf41706ed10516daea78bd0e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dt1ww3q2g8q53"
path="res://.godot/imported/11A.png-ceb5811a8ebed4339dc187c52d1dfa90.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/11A.png"
dest_files=["res://.godot/imported/11A.png-ceb5811a8ebed4339dc187c52d1dfa90.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bsc0m33t5agi5"
path="res://.godot/imported/11B.png-f7bd8e1611b003921b5673ac4a6768cc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/11B.png"
dest_files=["res://.godot/imported/11B.png-f7bd8e1611b003921b5673ac4a6768cc.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dk6uy58f2vgg1"
path="res://.godot/imported/12A.png-72c3bea5b2cd66e378b779f87f4a4543.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/12A.png"
dest_files=["res://.godot/imported/12A.png-72c3bea5b2cd66e378b779f87f4a4543.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dli2i2bbd8sv8"
path="res://.godot/imported/12B.png-df613c0dc77a156dfc43783ffc1e7338.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/12B.png"
dest_files=["res://.godot/imported/12B.png-df613c0dc77a156dfc43783ffc1e7338.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cokfcgjm0egso"
path="res://.godot/imported/13A.png-f3254d8cffc32ecdaee15b155486f2e5.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/13A.png"
dest_files=["res://.godot/imported/13A.png-f3254d8cffc32ecdaee15b155486f2e5.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://p2jg0x07yvis"
path="res://.godot/imported/14A.png-a3b15c4c826ce4e51fc37ced108451f5.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/14A.png"
dest_files=["res://.godot/imported/14A.png-a3b15c4c826ce4e51fc37ced108451f5.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://1jhfhm04qcgb"
path="res://.godot/imported/14B.png-9065dd942c95a2507b7082e1bc46cfc0.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/14B.png"
dest_files=["res://.godot/imported/14B.png-9065dd942c95a2507b7082e1bc46cfc0.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bmurnnk6xds62"
path="res://.godot/imported/15.png-1258832873b5486cff75df21c04a0dcb.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/15.png"
dest_files=["res://.godot/imported/15.png-1258832873b5486cff75df21c04a0dcb.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -1,34 +1,14 @@
[remap] [remap]
importer="texture" importer="image"
type="CompressedTexture2D" type="Image"
uid="uid://8wncn26ee7yi" uid="uid://8wncn26ee7yi"
path="res://.godot/imported/1A.png-de6aac8a58566bd0f63e6d3f1adb27d4.ctex" path="res://.godot/imported/1A.png-de6aac8a58566bd0f63e6d3f1adb27d4.image"
metadata={
"vram_texture": false
}
[deps] [deps]
source_file="res://src/minimap/Floor Maps/1A.png" source_file="res://src/minimap/Floor Maps/1A.png"
dest_files=["res://.godot/imported/1A.png-de6aac8a58566bd0f63e6d3f1adb27d4.ctex"] dest_files=["res://.godot/imported/1A.png-de6aac8a58566bd0f63e6d3f1adb27d4.image"]
[params] [params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://yj8qw6hm1mtd"
path="res://.godot/imported/9A.png-be12e054098eec011dc19049cdfc1ba8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/9A.png"
dest_files=["res://.godot/imported/9A.png-be12e054098eec011dc19049cdfc1ba8.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bw1456i87jrfo"
path="res://.godot/imported/9B.png-2828f8040b31fbd4ffeb55d904c03bda.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/minimap/Floor Maps/9B.png"
dest_files=["res://.godot/imported/9B.png-2828f8040b31fbd4ffeb55d904c03bda.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0