diff --git a/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs b/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs index 3b9ee8f8..1b0a179a 100644 --- a/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs +++ b/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs @@ -4,31 +4,104 @@ using Godot; using System.Collections.Generic; using System; using Zennysoft.Ma.Adapter; +using System.Linq; +using Chickensoft.Collections; namespace Zennysoft.Game.Ma; [Meta(typeof(IAutoNode))] -public partial class BossTypeA : Enemy, IHasPrimaryAttack, IHasSecondaryAttack, ICanActivate +public partial class BossTypeA : CharacterBody3D, IEnemy, IHasPrimaryAttack, IHasSecondaryAttack, ICanActivate, IProvide { public override void _Notification(int what) => this.Notify(what); + protected IEnemyLogic _enemyLogic { get; set; } = default!; + + IEnemyLogic IProvide.Value() => _enemyLogic; + + public EnemyLogic.IBinding EnemyBinding { get; set; } = default!; + + + [Dependency] protected IPlayer _player => this.DependOn(() => GetParent().GetChildren().OfType().Single()); + [Export] public ElementType PrimaryAttackElementalType { get; set; } = ElementType.None; [Export] public double PrimaryAttackElementalDamageBonus { get; set; } = 1.0; + [Export] protected EnemyStatResource _enemyStatResource { get; set; } = default!; + public ElementType SecondaryAttackElementalType { get; set; } = ElementType.None; public double SecondaryAttackElementalDamageBonus { get; set; } = 1.0; - [Node] public new BossTypeAEnemyModelView _enemyModelView { get; set; } + [Node] public BossTypeAEnemyModelView _enemyModelView { get; set; } [Node] public CollisionShape3D EnemyHitbox { get; set; } = default!; [Node] private Node3D _rotation { get; set; } = default!; + [Node] protected Timer _attackTimer { get; set; } = default!; + + [Node] private CollisionShape3D _collisionShape { get; set; } = default!; + private Vector3 _target; + private float _movementSpeed = 2.0f; + + public AutoProp CurrentHP { get; set; } + + private DamageCalculator _damageCalculator; + + public void Setup() + { + _enemyLogic = new EnemyLogic(); + _enemyLogic.Set(_enemyStatResource); + _enemyLogic.Set(this as IEnemy); + _enemyLogic.Set(_player); + _damageCalculator = new DamageCalculator(); + SetPhysicsProcess(true); + } + + public void OnResolved() + { + EnemyBinding = _enemyLogic.Bind(); + + EnemyBinding + .Handle((in EnemyLogic.Output.TakeAction _) => + { + TakeAction(); + }) + .Handle((in EnemyLogic.Output.Defeated output) => + { + }); + + this.Provide(); + + _enemyLogic.Start(); + + CurrentHP = new AutoProp(_enemyStatResource.MaximumHP); + CurrentHP.Sync += OnHPChanged; + } + + private void OnHPChanged(double newHP) + { + if (newHP <= 0) + Die(); + } + + public virtual void Die() + { + SetProcess(false); + _movementSpeed = 0; + CurrentHP.OnNext(0); + _enemyLogic.Input(new EnemyLogic.Input.EnemyDefeated()); + _collisionShape.SetDeferred("disabled", true); + _enemyModelView.PlayDeathAnimation(); + var tweener = CreateTween(); + tweener.TweenInterval(1.0f); + tweener.TweenCallback(Callable.From(QueueFree)); + } + public void OnReady() { _target = GlobalPosition; @@ -71,7 +144,7 @@ public partial class BossTypeA : Enemy, IHasPrimaryAttack, IHasSecondaryAttack, } } - public override void TakeAction() + public void TakeAction() { var rng = new RandomNumberGenerator(); var options = new List() { PrimaryAttack, SecondaryAttack }; @@ -89,18 +162,20 @@ public partial class BossTypeA : Enemy, IHasPrimaryAttack, IHasSecondaryAttack, _enemyModelView.PlaySecondaryAttackAnimation(); } - public override void StartAttackTimer() + public void StartAttackTimer() { _attackTimer.Timeout += OnAttackTimeout; } - public override void StopAttackTimer() + public void StopAttackTimer() { if (_attackTimer.TimeLeft > 0) _attackTimer.Timeout -= OnAttackTimeout; } - public override void SetTarget(Vector3 target) => _target = target; + + + public void SetTarget(Vector3 target) => _target = target; private void Hitbox_AreaEntered(Area3D area) { @@ -112,10 +187,14 @@ public partial class BossTypeA : Enemy, IHasPrimaryAttack, IHasSecondaryAttack, } } + public void StartFight() + { + _enemyLogic.Input(new EnemyLogic.Input.Alerted()); + } + public void Activate() { Show(); - _enemyLogic.Input(new EnemyLogic.Input.Alerted()); EnemyHitbox.SetDeferred(CollisionShape3D.PropertyName.Disabled, false); } @@ -156,4 +235,13 @@ public partial class BossTypeA : Enemy, IHasPrimaryAttack, IHasSecondaryAttack, CurrentHP.OnCompleted(); StopAttackTimer(); } + + public void Move(Vector3 velocity) => throw new NotImplementedException(); + public void TakeDamage(double damage, ElementType elementType = ElementType.None, bool isCriticalHit = false, bool ignoreDefense = false, bool ignoreElementalResistance = false) => throw new NotImplementedException(); + public void Knockback(float impulse, Vector3 direction) => throw new NotImplementedException(); + public void SetCurrentHP(int newHP) => throw new NotImplementedException(); + public int GetMaximumHP() => throw new NotImplementedException(); + public void SetEnemyGlobalPosition(Vector3 target) => throw new NotImplementedException(); + public Vector3 GetEnemyGlobalPosition() => throw new NotImplementedException(); + public IDungeonRoom GetCurrentRoom() => throw new NotImplementedException(); } diff --git a/Zennysoft.Game.Ma/src/enemy/Enemy.cs b/Zennysoft.Game.Ma/src/enemy/Enemy.cs index 7b936768..a12a3f7a 100644 --- a/Zennysoft.Game.Ma/src/enemy/Enemy.cs +++ b/Zennysoft.Game.Ma/src/enemy/Enemy.cs @@ -37,11 +37,11 @@ public partial class Enemy : CharacterBody3D, IEnemy, IProvide #region Node Dependencies [Node] private CollisionShape3D _collisionShape { get; set; } = default!; - [Node] private Area3D _lineOfSight { get; set; } = default!; + [Node] private Area3D LineOfSight { get; set; } = default!; [Node] protected Timer _attackTimer { get; set; } = default!; - [Node] private RayCast3D _raycast { get; set; } = default!; + [Node] private RayCast3D Raycast { get; set; } = default!; [Node] protected IEnemyModelView _enemyModelView { get; set; } = default!; #endregion @@ -86,7 +86,7 @@ public partial class Enemy : CharacterBody3D, IEnemy, IProvide CurrentHP = new AutoProp(_enemyStatResource.MaximumHP); CurrentHP.Sync += OnHPChanged; - _lineOfSight.BodyEntered += LineOfSight_BodyEntered; + LineOfSight.BodyEntered += LineOfSight_BodyEntered; } public override void _Process(double delta) @@ -233,18 +233,18 @@ public partial class Enemy : CharacterBody3D, IEnemy, IProvide private void LineOfSight_BodyEntered(Node3D body) { - var overlappingBodies = _lineOfSight.GetOverlappingBodies(); + var overlappingBodies = LineOfSight.GetOverlappingBodies(); foreach (var _ in overlappingBodies) { - if (_raycast.GlobalPosition != _player.CurrentPosition) - _raycast.LookAt(_player.CurrentPosition, Vector3.Up); - _raycast.ForceRaycastUpdate(); - if (_raycast.IsColliding()) + if (Raycast.GlobalPosition != _player.CurrentPosition) + Raycast.LookAt(_player.CurrentPosition, Vector3.Up); + Raycast.ForceRaycastUpdate(); + if (Raycast.IsColliding()) { - var collider = _raycast.GetCollider(); + var collider = Raycast.GetCollider(); if (collider is IPlayer) { - _raycast.DebugShapeCustomColor = Color.FromString("Purple", Colors.Purple); + Raycast.DebugShapeCustomColor = Color.FromString("Purple", Colors.Purple); _enemyLogic.Input(new EnemyLogic.Input.Alerted()); } } diff --git a/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs b/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs index 87a7e0c9..4d4ff709 100644 --- a/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs +++ b/Zennysoft.Game.Ma/src/enemy/EnemyModelView3D.cs @@ -98,5 +98,8 @@ public partial class EnemyModelView3D : Node3D, IEnemyModelView AnimationTree.Get(PARAMETERS_PLAYBACK).As().Stop(); } - public void SetCurrentDirection(Basis enemyBasis, Vector3 cameraDirection) => throw new System.NotImplementedException(); + public void SetCurrentDirection(Basis enemyBasis, Vector3 cameraDirection) + { + + } } diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn index 51205c7b..59012c40 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFace.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=8 format=3 uid="uid://2wibfnu2jvlv"] +[gd_scene load_steps=7 format=3 uid="uid://2wibfnu2jvlv"] [ext_resource type="Script" uid="uid://dveonnhcxcp08" path="res://src/enemy/BossTypeA.cs" id="1_x21p4"] [ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_jl3qa"] @@ -14,11 +14,11 @@ MaxAttack = 0 MaxDefense = 0 ExpFromDefeat = 0 Luck = 0.05 -TelluricResistance = 0.0 -AeolicResistance = 0.0 -HydricResistance = 0.0 -IgneousResistance = 0.0 -FerrumResistance = 0.0 +_telluricResistance = 0.0 +_aeolicResistance = 0.0 +_hydricResistance = 0.0 +_igneousResistance = 0.0 +_ferrumResistance = 0.0 DropsSoulGemChance = 0.75 metadata/_custom_type_script = "uid://dnkmr0eq1sij0" @@ -26,9 +26,6 @@ metadata/_custom_type_script = "uid://dnkmr0eq1sij0" radius = 10.3283 height = 50.0 -[sub_resource type="SphereShape3D" id="SphereShape3D_x21p4"] -radius = 1.0 - [sub_resource type="SphereShape3D" id="SphereShape3D_jl3qa"] radius = 15.426 @@ -40,7 +37,10 @@ axis_lock_angular_x = true axis_lock_angular_y = true motion_mode = 1 script = ExtResource("1_x21p4") +PrimaryAttackElementalType = null +PrimaryAttackElementalDamageBonus = null _enemyStatResource = SubResource("Resource_jl3qa") +_movementSpeed = null [node name="CollisionShape" type="CollisionShape3D" parent="."] unique_name_in_owner = true @@ -53,15 +53,6 @@ wait_time = 3.5 [node name="EnemyModelView" parent="." instance=ExtResource("2_x21p4")] unique_name_in_owner = true -[node name="LineOfSight" type="Area3D" parent="."] -unique_name_in_owner = true - -[node name="CollisionShape3D" type="CollisionShape3D" parent="LineOfSight"] -shape = SubResource("SphereShape3D_x21p4") - -[node name="Raycast" type="RayCast3D" parent="."] -unique_name_in_owner = true - [node name="Collision" type="Area3D" parent="."] collision_layer = 2048 collision_mask = 0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn index 607feb78..15422413 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/14. horse_head/HorseFaceModelView.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=35 format=4 uid="uid://bid6f48l0q58o"] -[ext_resource type="Script" uid="uid://ckv5dmrw6pvn6" path="res://src/enemy/EnemyModelView3D.cs" id="1_q3bfl"] +[ext_resource type="Script" uid="uid://bvcfww5827g74" path="res://src/enemy/enemy_types/BossTypeAEnemyModelView.cs" id="1_q3bfl"] [ext_resource type="Texture2D" uid="uid://2e4cp477ex0t" path="res://src/enemy/enemy_types/14. horse_head/animation/Horse Head 1_Metal054C_1K-JPG_Color.jpg" id="1_vv6g0"] [ext_resource type="Animation" uid="uid://bhsp32c05j2o5" path="res://src/enemy/enemy_types/14. horse_head/animation/walking.res" id="2_yvw71"] [ext_resource type="Animation" uid="uid://ccq41qrm1lduk" path="res://src/enemy/enemy_types/14. horse_head/animation/walking2.res" id="3_bkc4x"] @@ -950,7 +950,7 @@ bones/0/name = "spine1" bones/0/parent = -1 bones/0/rest = Transform3D(1.49012e-06, 0.00846654, -0.999964, 2.93367e-08, 0.999964, 0.00846654, 1, -4.23752e-08, 1.49012e-06, 0.000155807, -0.00105953, -2.01735) bones/0/enabled = true -bones/0/position = Vector3(0.0996386, -0.283223, -1.53144) +bones/0/position = Vector3(0.0996386, -0.286937, -1.53144) bones/0/rotation = Quaternion(0.0256267, -0.805691, 0.0118477, 0.591662) bones/0/scale = Vector3(1, 1, 1) bones/1/name = "spine0" @@ -979,7 +979,7 @@ bones/4/parent = 3 bones/4/rest = Transform3D(0.901905, -0.410135, 0.135488, 0.412416, 0.910915, 0.0120912, -0.128377, 0.0449723, 0.990705, 2.5332e-07, 0.990515, -7.07805e-08) bones/4/enabled = true bones/4/position = Vector3(2.5332e-07, 0.990515, -7.07805e-08) -bones/4/rotation = Quaternion(0.00753206, 0.0671297, 0.209216, 0.975534) +bones/4/rotation = Quaternion(0.00719109, 0.0669325, 0.208583, 0.975685) bones/4/scale = Vector3(1, 1, 1) bones/5/name = "neck4" bones/5/parent = 4 @@ -993,7 +993,7 @@ bones/6/parent = 5 bones/6/rest = Transform3D(0.0598389, 0.98531, 0.15995, -0.975271, 0.0235553, 0.219755, 0.212759, -0.169144, 0.962353, 3.65078e-07, 1.40318, 0) bones/6/enabled = true bones/6/position = Vector3(3.65078e-07, 1.40318, 0) -bones/6/rotation = Quaternion(-0.342657, 0.0520706, -0.493702, 0.79758) +bones/6/rotation = Quaternion(-0.34229, 0.0520364, -0.492651, 0.798389) bones/6/scale = Vector3(1, 1, 1) bones/7/name = "Bone.007" bones/7/parent = 6 @@ -1028,7 +1028,7 @@ bones/11/parent = 1 bones/11/rest = Transform3D(0.981457, 0.0769315, -0.175568, 0.18837, -0.217537, 0.957703, 0.035485, -0.973015, -0.227995, -1.09896e-07, 3.84743, -2.10479e-07) bones/11/enabled = true bones/11/position = Vector3(-1.09896e-07, 3.84743, -2.10479e-07) -bones/11/rotation = Quaternion(-0.806279, -0.0801045, -0.0234975, 0.585615) +bones/11/rotation = Quaternion(-0.806484, -0.0804808, -0.0235063, 0.585281) bones/11/scale = Vector3(1, 1, 1) bones/12/name = "arm2_L" bones/12/parent = 11 @@ -1055,7 +1055,7 @@ bones/15/name = "arm1_R" bones/15/parent = 1 bones/15/rest = Transform3D(-0.98213, 0.0512573, -0.181089, -0.187541, -0.185921, 0.964501, 0.0157694, 0.981227, 0.192212, 0.00107862, 3.8461, -0.0821097) bones/15/enabled = true -bones/15/position = Vector3(-0.2018, 3.64477, 0.0766737) +bones/15/position = Vector3(-0.200988, 3.63853, 0.0778547) bones/15/rotation = Quaternion(-0.502686, 0.531044, 0.680821, -0.0422068) bones/15/scale = Vector3(1, 1, 1) bones/16/name = "arm2_R" @@ -1070,7 +1070,7 @@ bones/17/parent = 16 bones/17/rest = Transform3D(0.998789, 0.0488077, -0.00615137, -0.0491113, 0.996528, -0.0672226, 0.00284903, 0.0674433, 0.997719, -5.21541e-08, 3.04263, -1.31503e-06) bones/17/enabled = true bones/17/position = Vector3(-5.21541e-08, 3.04263, -1.31503e-06) -bones/17/rotation = Quaternion(-0.0450407, 0.0973271, 0.265229, 0.958203) +bones/17/rotation = Quaternion(-0.0441274, 0.0972971, 0.265552, 0.958159) bones/17/scale = Vector3(1, 1, 1) bones/18/name = "hand_R" bones/18/parent = 17 @@ -1083,7 +1083,7 @@ bones/19/name = "hip_L" bones/19/parent = -1 bones/19/rest = Transform3D(0.138486, 0.897208, 0.419333, -0.129033, -0.403458, 0.905854, 0.981923, -0.179556, 0.059896, 0.000155807, -0.00105953, -2.01735) bones/19/enabled = true -bones/19/position = Vector3(0.147751, -0.284407, -1.49267) +bones/19/position = Vector3(0.147751, -0.286556, -1.49267) bones/19/rotation = Quaternion(0.427793, 0.34021, 0.687061, -0.478745) bones/19/scale = Vector3(1, 1, 1) bones/20/name = "leg1_L" @@ -1091,14 +1091,14 @@ bones/20/parent = 19 bones/20/rest = Transform3D(0.945603, 0.113405, 0.304916, -0.324072, 0.410457, 0.852351, -0.0284943, -0.9048, 0.424881, 2.08616e-07, 2.00996, -7.1153e-07) bones/20/enabled = true bones/20/position = Vector3(2.08616e-07, 2.00996, -7.1153e-07) -bones/20/rotation = Quaternion(-0.437674, -0.325425, -0.369556, 0.752309) +bones/20/rotation = Quaternion(-0.437502, -0.325641, -0.369821, 0.752186) bones/20/scale = Vector3(1, 1, 1) bones/21/name = "leg2_L" bones/21/parent = 20 bones/21/rest = Transform3D(0.990336, -0.138679, 0.00180777, 0.138628, 0.990193, 0.0173138, -0.00419111, -0.0168959, 0.999848, 5.96046e-08, 5.85994, -5.23403e-07) bones/21/enabled = true bones/21/position = Vector3(5.96046e-08, 5.85994, -5.23403e-07) -bones/21/rotation = Quaternion(-0.0475515, 0.00188972, 0.380368, 0.92361) +bones/21/rotation = Quaternion(-0.0475923, 0.00188944, 0.380694, 0.923474) bones/21/scale = Vector3(1, 1, 1) bones/22/name = "foot1_L" bones/22/parent = 21 @@ -1132,7 +1132,7 @@ bones/26/name = "hip_R" bones/26/parent = -1 bones/26/rest = Transform3D(0.138486, -0.897208, -0.419333, 0.129033, -0.403458, 0.905854, -0.981923, -0.179556, 0.059896, -0.000155807, -0.00105953, -2.01735) bones/26/enabled = true -bones/26/position = Vector3(0.0289172, -0.299562, -1.59603) +bones/26/position = Vector3(0.0289172, -0.300995, -1.59603) bones/26/rotation = Quaternion(0.695067, -0.09936, -0.377924, -0.603475) bones/26/scale = Vector3(1, 1, 1) bones/27/name = "leg1_R" @@ -1140,14 +1140,14 @@ bones/27/parent = 26 bones/27/rest = Transform3D(0.945603, -0.113405, -0.304916, 0.324072, 0.410457, 0.852351, 0.0284943, -0.9048, 0.424881, -9.54606e-09, 2.00996, -3.52971e-07) bones/27/enabled = true bones/27/position = Vector3(-9.54606e-09, 2.00996, -3.52971e-07) -bones/27/rotation = Quaternion(-0.317513, 0.174091, 0.183894, 0.913816) +bones/27/rotation = Quaternion(-0.317189, 0.174319, 0.183922, 0.91388) bones/27/scale = Vector3(1, 1, 1) bones/28/name = "leg2_R" bones/28/parent = 27 bones/28/rest = Transform3D(0.990336, 0.138679, -0.00180777, -0.138628, 0.990193, 0.0173138, 0.00419111, -0.0168959, 0.999848, 4.51691e-08, 5.85994, -3.72529e-09) bones/28/enabled = true bones/28/position = Vector3(4.51691e-08, 5.85994, -3.72529e-09) -bones/28/rotation = Quaternion(-0.268209, 0.0202209, -0.175002, 0.947116) +bones/28/rotation = Quaternion(-0.268436, 0.020219, -0.17515, 0.947025) bones/28/scale = Vector3(1, 1, 1) bones/29/name = "foot1_R" bones/29/parent = 28 @@ -1184,7 +1184,7 @@ mesh = SubResource("ArrayMesh_6e63x") skin = SubResource("Skin_yvw71") [node name="BoneAttachment3D" type="BoneAttachment3D" parent="Armature/Skeleton3D"] -transform = Transform3D(-0.370165, -0.13327, -0.919357, -0.259654, -0.935368, 0.240137, -0.89194, 0.327605, 0.311637, -2.00356, 8.78341, 6.14536) +transform = Transform3D(-0.370165, -0.13327, -0.919357, -0.260753, -0.934964, 0.240521, -0.89162, 0.328758, 0.31134, -2.00357, 8.78194, 6.15009) bone_name = "TOP OF SKULL" bone_idx = 8 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFace.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFace.tscn index 7e0342e0..1d8b3a5e 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFace.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFace.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=8 format=3 uid="uid://6dnsw37d1uw4"] +[gd_scene load_steps=7 format=3 uid="uid://6dnsw37d1uw4"] [ext_resource type="Script" uid="uid://dveonnhcxcp08" path="res://src/enemy/BossTypeA.cs" id="1_v6b2s"] [ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_j7u30"] @@ -26,9 +26,6 @@ metadata/_custom_type_script = "uid://dnkmr0eq1sij0" radius = 12.4931 height = 50.0 -[sub_resource type="SphereShape3D" id="SphereShape3D_v6b2s"] -radius = 1.0 - [sub_resource type="SphereShape3D" id="SphereShape3D_j7u30"] radius = 15.426 @@ -57,15 +54,6 @@ unique_name_in_owner = true unique_name_in_owner = true wait_time = 3.5 -[node name="LineOfSight" type="Area3D" parent="."] -unique_name_in_owner = true - -[node name="CollisionShape3D" type="CollisionShape3D" parent="LineOfSight"] -shape = SubResource("SphereShape3D_v6b2s") - -[node name="Raycast" type="RayCast3D" parent="."] -unique_name_in_owner = true - [node name="Collision" type="Area3D" parent="."] collision_layer = 2048 collision_mask = 0 diff --git a/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn b/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn index 2c2a02c8..94297706 100644 --- a/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn +++ b/Zennysoft.Game.Ma/src/enemy/enemy_types/15. ox_face/OxFaceModelView.tscn @@ -1,6 +1,7 @@ -[gd_scene load_steps=25 format=4 uid="uid://dnomfbym36ivg"] +[gd_scene load_steps=26 format=4 uid="uid://dnomfbym36ivg"] [ext_resource type="Script" uid="uid://ckv5dmrw6pvn6" path="res://src/enemy/EnemyModelView3D.cs" id="1_6miqu"] +[ext_resource type="Script" uid="uid://bvcfww5827g74" path="res://src/enemy/enemy_types/BossTypeAEnemyModelView.cs" id="1_f2iok"] [ext_resource type="Texture2D" uid="uid://dp6hwvuhfkji8" path="res://src/enemy/enemy_types/15. ox_face/models/OX FACE_Metal054C_1K-JPG_Color.jpg" id="1_lsf8e"] [ext_resource type="AnimationLibrary" uid="uid://dn4501qsypsu" path="res://src/enemy/enemy_types/14. horse_head/animation/OxFaceAnimations.tres" id="3_pmgg3"] [ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="5_f2iok"] @@ -190,7 +191,7 @@ graph_offset = Vector2(0, -71.1111) size = Vector3(5, 24.0327, 5.50244) [node name="EnemyModelView" type="Node3D"] -script = ExtResource("1_6miqu") +script = ExtResource("1_f2iok") [node name="Armature" type="Node3D" parent="."] script = ExtResource("1_6miqu") @@ -200,7 +201,7 @@ bones/0/name = "spine1" bones/0/parent = -1 bones/0/rest = Transform3D(1.49012e-06, 0.00846654, -0.999964, 2.93367e-08, 0.999964, 0.00846654, 1, -4.23752e-08, 1.49012e-06, 0.000155807, -0.00105953, -2.01735) bones/0/enabled = true -bones/0/position = Vector3(-0.259488, -0.96383, -1.97376) +bones/0/position = Vector3(-0.260102, -1.03396, -1.96903) bones/0/rotation = Quaternion(0.0915277, -0.692111, -0.0341586, 0.715149) bones/0/scale = Vector3(1, 1, 1) bones/1/name = "spine0" @@ -243,7 +244,7 @@ bones/6/parent = 5 bones/6/rest = Transform3D(0.0598389, 0.98531, 0.15995, -0.975271, 0.0235553, 0.219755, 0.212759, -0.169144, 0.962353, 3.65078e-07, 1.40318, 0) bones/6/enabled = true bones/6/position = Vector3(3.65078e-07, 1.40318, 0) -bones/6/rotation = Quaternion(-0.0697867, -0.302352, -0.744713, 0.59086) +bones/6/rotation = Quaternion(-0.0582257, -0.298145, -0.744478, 0.594534) bones/6/scale = Vector3(1, 1, 1) bones/7/name = "Bone.007" bones/7/parent = 6 @@ -278,7 +279,7 @@ bones/11/parent = 1 bones/11/rest = Transform3D(0.981457, 0.0769315, -0.175568, 0.18837, -0.217537, 0.957703, 0.035485, -0.973015, -0.227995, -1.09896e-07, 3.84743, -2.10479e-07) bones/11/enabled = true bones/11/position = Vector3(-1.09896e-07, 3.84743, -2.10479e-07) -bones/11/rotation = Quaternion(-0.784729, -0.0616535, 0.0718257, 0.612568) +bones/11/rotation = Quaternion(-0.7806, -0.0580329, 0.0800844, 0.617156) bones/11/scale = Vector3(1, 0.999999, 1) bones/12/name = "arm2_L" bones/12/parent = 11 @@ -306,7 +307,7 @@ bones/15/parent = 1 bones/15/rest = Transform3D(-0.98213, 0.0512573, -0.181089, -0.187541, -0.185921, 0.964501, 0.0157694, 0.981227, 0.192212, 0.00107862, 3.8461, -0.0821097) bones/15/enabled = true bones/15/position = Vector3(0.00107886, 3.8461, -0.0821095) -bones/15/rotation = Quaternion(-0.210671, 0.737877, 0.621635, -0.157245) +bones/15/rotation = Quaternion(-0.214497, 0.743843, 0.615182, -0.149132) bones/15/scale = Vector3(1, 1, 1) bones/16/name = "arm2_R" bones/16/parent = 15 @@ -333,22 +334,22 @@ bones/19/name = "hip_L" bones/19/parent = -1 bones/19/rest = Transform3D(0.138486, 0.897208, 0.419333, -0.129033, -0.403458, 0.905854, 0.981923, -0.179556, 0.059896, 0.000155807, -0.00105953, -2.01735) bones/19/enabled = true -bones/19/position = Vector3(-0.309033, -1.1318, -1.95517) -bones/19/rotation = Quaternion(0.612762, 0.310855, 0.569327, -0.451397) +bones/19/position = Vector3(-0.365519, -1.18524, -1.76905) +bones/19/rotation = Quaternion(0.624534, 0.296747, 0.550437, -0.467886) bones/19/scale = Vector3(1, 1, 1) bones/20/name = "leg1_L" bones/20/parent = 19 bones/20/rest = Transform3D(0.945603, 0.113405, 0.304916, -0.324072, 0.410457, 0.852351, -0.0284943, -0.9048, 0.424881, 2.08616e-07, 2.00996, -7.1153e-07) bones/20/enabled = true bones/20/position = Vector3(2.08616e-07, 2.00996, -7.1153e-07) -bones/20/rotation = Quaternion(-0.312233, -0.440038, -0.274881, 0.795813) +bones/20/rotation = Quaternion(-0.324511, -0.426489, -0.295168, 0.790997) bones/20/scale = Vector3(1, 0.999999, 1) bones/21/name = "leg2_L" bones/21/parent = 20 bones/21/rest = Transform3D(0.990336, -0.138679, 0.00180777, 0.138628, 0.990193, 0.0173138, -0.00419111, -0.0168959, 0.999848, 5.96046e-08, 5.85994, -5.23403e-07) bones/21/enabled = true bones/21/position = Vector3(5.96046e-08, 5.85994, -5.23403e-07) -bones/21/rotation = Quaternion(-0.0601745, 0.00130057, 0.487115, 0.871261) +bones/21/rotation = Quaternion(-0.0604686, 0.00129855, 0.489496, 0.869905) bones/21/scale = Vector3(1, 1, 1) bones/22/name = "foot1_L" bones/22/parent = 21 @@ -382,7 +383,7 @@ bones/26/name = "hip_R" bones/26/parent = -1 bones/26/rest = Transform3D(0.138486, -0.897208, -0.419333, 0.129033, -0.403458, 0.905854, -0.981923, -0.179556, 0.059896, -0.000155807, -0.00105953, -2.01735) bones/26/enabled = true -bones/26/position = Vector3(-0.235011, -1.11395, -2.01773) +bones/26/position = Vector3(-0.0689794, -1.11395, -2.01886) bones/26/rotation = Quaternion(0.608697, -0.3155, -0.575514, -0.445793) bones/26/scale = Vector3(1, 1, 1) bones/27/name = "leg1_R" @@ -390,14 +391,14 @@ bones/27/parent = 26 bones/27/rest = Transform3D(0.945603, -0.113405, -0.304916, 0.324072, 0.410457, 0.852351, 0.0284943, -0.9048, 0.424881, -9.54606e-09, 2.00996, -3.52971e-07) bones/27/enabled = true bones/27/position = Vector3(-9.54606e-09, 2.00996, -3.52971e-07) -bones/27/rotation = Quaternion(-0.207711, 0.421647, 0.141893, 0.871169) +bones/27/rotation = Quaternion(-0.202922, 0.424294, 0.138461, 0.871565) bones/27/scale = Vector3(1, 0.999999, 1) bones/28/name = "leg2_R" bones/28/parent = 27 bones/28/rest = Transform3D(0.990336, 0.138679, -0.00180777, -0.138628, 0.990193, 0.0173138, 0.00419111, -0.0168959, 0.999848, 4.51691e-08, 5.85994, -3.72529e-09) bones/28/enabled = true bones/28/position = Vector3(4.51691e-08, 5.85994, -3.72529e-09) -bones/28/rotation = Quaternion(-0.0640421, -0.00115636, -0.511308, 0.857007) +bones/28/rotation = Quaternion(-0.062997, -0.00116309, -0.502962, 0.862009) bones/28/scale = Vector3(1, 1, 1) bones/29/name = "foot1_R" bones/29/parent = 28 @@ -429,7 +430,7 @@ bones/32/rotation = Quaternion(0.456756, 0.539878, -0.539587, -0.456893) bones/32/scale = Vector3(1, 1, 1) [node name="BoneAttachment3D" type="BoneAttachment3D" parent="Armature/Skeleton3D"] -transform = Transform3D(-0.291816, -0.0758791, -0.95346, -0.329798, -0.927733, 0.174769, -0.897817, 0.36545, 0.245702, -1.66649, 8.30024, 4.94846) +transform = Transform3D(-0.278583, -0.0552048, -0.958824, -0.331993, -0.931266, 0.150077, -0.901205, 0.360132, 0.241107, -1.67868, 8.22488, 4.95448) bone_name = "TOP OF SKULL" bone_idx = 8 diff --git a/Zennysoft.Game.Ma/src/map/Map.tscn b/Zennysoft.Game.Ma/src/map/Map.tscn index a8f1384f..49810ce9 100644 --- a/Zennysoft.Game.Ma/src/map/Map.tscn +++ b/Zennysoft.Game.Ma/src/map/Map.tscn @@ -1,13 +1,18 @@ -[gd_scene load_steps=6 format=3 uid="uid://by67pn7fdsg1m"] +[gd_scene load_steps=11 format=3 uid="uid://by67pn7fdsg1m"] [ext_resource type="Script" uid="uid://14e8mu48ed4" path="res://src/map/Map.cs" id="1_bw70o"] -[ext_resource type="PackedScene" uid="uid://dvnc26rebk6o0" path="res://src/map/overworld/Overworld.tscn" id="2_s7lwc"] -[ext_resource type="PackedScene" uid="uid://dl6h1djc27ddl" path="res://src/map/dungeon/floors/Floor00.tscn" id="3_s7lwc"] -[ext_resource type="PackedScene" uid="uid://dmiqwmivkjgmq" path="res://src/map/dungeon/floors/Floor02.tscn" id="4_0qcd2"] -[ext_resource type="PackedScene" uid="uid://bc1sp6xwe0j65" path="res://src/map/dungeon/floors/Floor01.tscn" id="4_1ny7u"] +[ext_resource type="PackedScene" uid="uid://bh8wgd536f317" path="res://src/map/dungeon/debug_floors/DebugFloor03.tscn" id="2_0qcd2"] +[ext_resource type="PackedScene" uid="uid://bep0gljnsdmwl" path="res://src/map/dungeon/debug_floors/DebugFloor01.tscn" id="2_00xd7"] +[ext_resource type="PackedScene" uid="uid://8oiglrv8q818" path="res://src/map/dungeon/debug_floors/DebugFloor02.tscn" id="3_v14r0"] +[ext_resource type="PackedScene" uid="uid://bpqm38kxonb35" path="res://src/map/dungeon/debug_floors/DebugFloor04.tscn" id="5_ne2vg"] +[ext_resource type="PackedScene" uid="uid://5ja3qxn8h7iw" path="res://src/map/dungeon/rooms/Set A/15. Boss Floor A.tscn" id="6_abpbr"] +[ext_resource type="PackedScene" uid="uid://ceo7ph483io44" path="res://src/map/dungeon/rooms/Set B/34. Boss Floor B.tscn" id="7_caf7v"] +[ext_resource type="PackedScene" uid="uid://bo20ffw2ygbks" path="res://src/map/dungeon/rooms/Set B/35. Goddess of Guidance's Room.tscn" id="8_y74f3"] +[ext_resource type="PackedScene" uid="uid://dttk7gis5ibge" path="res://src/map/dungeon/rooms/Set B/30. Void Room.tscn" id="9_dbqu2"] +[ext_resource type="PackedScene" uid="uid://cyrrhoarhxlhg" path="res://src/map/dungeon/rooms/Set B/36. Final Floor.tscn" id="10_xcm54"] [node name="Map" type="Node3D"] script = ExtResource("1_bw70o") -_floors = Array[PackedScene]([ExtResource("2_s7lwc"), ExtResource("3_s7lwc"), ExtResource("4_1ny7u"), ExtResource("4_0qcd2")]) +_floors = Array[PackedScene]([ExtResource("2_00xd7"), ExtResource("3_v14r0"), ExtResource("2_0qcd2"), ExtResource("5_ne2vg"), ExtResource("6_abpbr"), ExtResource("7_caf7v"), ExtResource("8_y74f3"), ExtResource("9_dbqu2"), ExtResource("10_xcm54")]) [node name="WorldEnvironment" type="WorldEnvironment" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomA.cs b/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomA.cs index a65fea28..a5aec3f7 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomA.cs +++ b/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomA.cs @@ -1,12 +1,13 @@ using Chickensoft.AutoInject; using Chickensoft.Introspection; using Godot; +using System.Collections.Immutable; using Zennysoft.Ma.Adapter; namespace Zennysoft.Game.Ma; [Meta(typeof(IAutoNode))] -public partial class BossRoomA : Node3D, IBossRoom +public partial class BossRoomA : Node3D, IBossRoom, IDungeonFloor { public override void _Notification(int what) => this.Notify(what); @@ -27,6 +28,8 @@ public partial class BossRoomA : Node3D, IBossRoom [Node] public Node3D GateCollision { get; set; } = default!; [Node] private Area3D _exit { get; set; } = default!; + public ImmutableList Rooms { get; } + public bool FloorIsLoaded { get; set; } public void Setup() { @@ -46,8 +49,8 @@ public partial class BossRoomA : Node3D, IBossRoom { OxFaceStatue.Hide(); HorseHeadStatue.Hide(); - OxFace.Activate(); - HorseFace.Activate(); + OxFace.StartFight(); + HorseFace.StartFight(); } public void OnBossFightEnded() @@ -69,4 +72,11 @@ public partial class BossRoomA : Node3D, IBossRoom if (area.GetOwner() is IPlayer) ExitReached(); } + + public void InitializeDungeon() + { + + } + + public Transform3D GetPlayerSpawnPoint() => PlayerSpawn.GlobalTransform; } diff --git a/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomB.cs b/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomB.cs index 13f158e9..723005cc 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomB.cs +++ b/Zennysoft.Game.Ma/src/map/dungeon/code/BossRoomB.cs @@ -1,11 +1,12 @@ using Chickensoft.AutoInject; using Chickensoft.Introspection; using Godot; +using System.Collections.Immutable; namespace Zennysoft.Game.Ma; [Meta(typeof(IAutoNode))] -public partial class BossRoomB : Node3D, IBossRoom +public partial class BossRoomB : Node3D, IBossRoom, IDungeonFloor { public override void _Notification(int what) => this.Notify(what); @@ -14,6 +15,8 @@ public partial class BossRoomB : Node3D, IBossRoom [Node] public DemonWall DemonWall { get; set; } = default!; [Node] private Area3D ActivateTrap { get; set; } = default!; + public ImmutableList Rooms { get; } + public bool FloorIsLoaded { get; set; } public void OnReady() { @@ -31,4 +34,11 @@ public partial class BossRoomB : Node3D, IBossRoom { DemonWall.Activate(); } + + public void InitializeDungeon() + { + + } + + public Transform3D GetPlayerSpawnPoint() => PlayerSpawn.GlobalTransform; } diff --git a/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonFloor.cs b/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonFloor.cs index 60fc91c3..be31d097 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonFloor.cs +++ b/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonFloor.cs @@ -24,41 +24,40 @@ public partial class DungeonFloor : Node3D, IDungeonFloor public void InitializeDungeon() { - Rooms = []; - Rooms = FindAllDungeonRooms([.. GetChildren()], Rooms); - _playerSpawnPoint = RandomizePlayerSpawnPoint(); - var monsterRooms = Rooms.OfType(); - foreach (var room in monsterRooms) - room.SpawnEnemies(EnemyDatabase); - DungeonGenerator.EmitSignal("done_generating"); + Rooms = []; + Rooms = FindAllDungeonRooms([.. GetChildren()], Rooms); + _playerSpawnPoint = RandomizePlayerSpawnPoint(); + var monsterRooms = Rooms.OfType(); + foreach (var room in monsterRooms) + room.SpawnEnemies(EnemyDatabase); + DungeonGenerator.EmitSignal("done_generating"); } public Transform3D GetPlayerSpawnPoint() => new Transform3D(_playerSpawnPoint.Basis, new Vector3(_playerSpawnPoint.Origin.X, -1.75f, _playerSpawnPoint.Origin.Z)); private Transform3D RandomizePlayerSpawnPoint() { - var randomSpawnLocations = Rooms - .OfType() - .Select(x => x.PlayerSpawn); - var godotCollection = new Godot.Collections.Array(randomSpawnLocations); - var result = godotCollection.PickRandom(); - return result.GlobalTransform; + var randomSpawnLocations = Rooms + .OfType() + .Select(x => x.PlayerSpawn); + var godotCollection = new Godot.Collections.Array(randomSpawnLocations); + var result = godotCollection.PickRandom(); + return result.GlobalTransform; } private static ImmutableList FindAllDungeonRooms(List nodesToSearch, ImmutableList roomsFound) { - if (nodesToSearch.Count == 0) - return roomsFound; + if (nodesToSearch.Count == 0) + return roomsFound; - foreach (var node in nodesToSearch) - { - if (node is IDungeonRoom dungeonRoom) - roomsFound = roomsFound.Add(dungeonRoom); + foreach (var node in nodesToSearch) + { + if (node is IDungeonRoom dungeonRoom) + roomsFound = roomsFound.Add(dungeonRoom); + if (node.HasSignal("dungeon_done_generating")) + node.EmitSignal("dungeon_done_generating"); + } - if (node.HasSignal("dungeon_done_generating")) - node.EmitSignal("dungeon_done_generating"); - } - - return FindAllDungeonRooms(nodesToSearch.SelectMany(x => x.GetChildren()).ToList(), roomsFound); + return FindAllDungeonRooms(nodesToSearch.SelectMany(x => x.GetChildren()).ToList(), roomsFound); } } diff --git a/Zennysoft.Game.Ma/src/map/dungeon/code/corridor.gd b/Zennysoft.Game.Ma/src/map/dungeon/code/corridor.gd index 25853cf1..245467f7 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/code/corridor.gd +++ b/Zennysoft.Game.Ma/src/map/dungeon/code/corridor.gd @@ -7,11 +7,11 @@ func _ready(): dungeon_done_generating.connect(remove_unused_doors_and_walls) func remove_unused_doors_and_walls(): - if get_door_by_node($"Doors/DOOR?_F_CUT").get_room_leads_to() != null: - $"Doors/DOOR?_F_CUT".queue_free() - if get_door_by_node($"Doors/DOOR?_R_CUT").get_room_leads_to() != null: - $"Doors/DOOR?_R_CUT".queue_free() - if get_door_by_node($"Doors/DOOR?_B_CUT").get_room_leads_to() != null: - $"Doors/DOOR?_B_CUT".queue_free() - if get_door_by_node($"Doors/DOOR?_L_CUT").get_room_leads_to() != null: - $"Doors/DOOR?_L_CUT".queue_free() + if get_door_by_node($"Doors/DOOR?").get_room_leads_to() != null: + $"Doors/DOOR?".queue_free() + if get_door_by_node($"Doors/DOOR?2").get_room_leads_to() != null: + $"Doors/DOOR?2".queue_free() + if get_door_by_node($"Doors/DOOR?3").get_room_leads_to() != null: + $"Doors/DOOR?3".queue_free() + if get_door_by_node($"Doors/DOOR?4").get_room_leads_to() != null: + $"Doors/DOOR?4".queue_free() diff --git a/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor01.tscn b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor01.tscn new file mode 100644 index 00000000..a0bb0c61 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor01.tscn @@ -0,0 +1,402 @@ +[gd_scene load_steps=17 format=3 uid="uid://bep0gljnsdmwl"] + +[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_hi8ea"] +[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_m20ji"] +[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="3_41yfs"] +[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="4_es1bj"] +[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="5_em4xt"] +[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="7_yjf3p"] +[ext_resource type="PackedScene" uid="uid://i781lbf2wb22" path="res://src/map/dungeon/rooms/Set A/04. Antechamber B.tscn" id="8_6nrfy"] +[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_qa3lj"] +[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="10_qhbwi"] +[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="11_fs8rp"] +[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="12_13oyp"] +[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="19_o4jx7"] +[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="20_qw3qq"] +[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="21_6u31e"] + +[sub_resource type="NavigationMesh" id="NavigationMesh_xw4dv"] +vertices = PackedVector3Array(-9.05359, -0.588592, -35.2421, -9.05359, -0.588592, -35.7421, -11.0536, -0.588592, -35.7421, -11.3036, -0.588592, -34.9921, -21.0536, -0.588592, -51.2421, -21.0536, -0.588592, -51.7421, -23.0536, -0.588592, -51.7421, -23.3036, -0.588592, -50.9921, -37.0536, -0.588592, -20.7421, -39.3036, -0.588592, -20.9921, -39.0536, -0.588592, -19.2421, -37.0536, -0.588592, -19.2421, -19.3036, -0.588592, -58.9921, -20.8036, -0.588592, -58.9921, -20.8036, -0.588592, -56.9921, -19.3036, -0.588592, -56.9921, -43.0536, -0.588592, -19.2421, -43.5536, -0.588592, -18.9921, -43.5536, -0.588592, -16.9921, -43.0536, -0.588592, -16.7421, -41.0536, -0.588592, -16.7421, -40.8036, -0.588592, -18.9921, -43.0536, -0.588592, -15.2421, -43.5536, -0.588592, -14.9921, -43.5536, -0.588592, -12.9921, -43.0536, -0.588592, -11.2421, -43.5536, -0.588592, -10.9921, -43.5536, -0.588592, -8.99206, -39.3036, -0.588592, -16.9921, -39.0536, -0.588592, -16.4921, -37.0536, -0.588592, -16.4921, -35.3036, -0.588592, -24.9921, -35.0536, -0.588592, -24.4921, -33.0536, -0.588592, -24.4921, -31.3036, -0.588592, -28.9921, -31.0536, -0.588592, -28.4921, -29.0536, -0.588592, -28.4921, -23.3036, -0.588592, -32.9921, -23.0536, -0.588592, -32.4921, -21.0536, -0.588592, -32.4921, -20.8036, -0.588592, -32.9921, -21.0536, -0.588592, -35.2421, -23.0536, -0.588592, -35.2421, -19.0536, -0.588592, -31.2421, -19.5536, -0.588592, -30.9921, -19.5536, -0.588592, -28.9921, -19.0536, -0.588592, -27.2421, -19.5536, -0.588592, -26.9921, -19.5536, -0.588592, -24.9921, -19.0536, -0.588592, -23.2421, -19.5536, -0.588592, -22.9921, -19.5536, -0.588592, -20.9921, -19.0536, -0.588592, -19.2421, -19.5536, -0.588592, -18.9921, -19.5536, -0.588592, -16.9921, -19.0536, -0.588592, -15.2421, -19.5536, -0.588592, -14.9921, -19.5536, -0.588592, -12.9921, -19.0536, -0.588592, -11.2421, -19.5536, -0.588592, -10.9921, -19.5536, -0.588592, -8.99206, -19.0536, -0.588592, -7.24206, -19.5536, -0.588592, -6.99206, -19.5536, -0.588592, -4.99206, -19.0536, -0.588592, -3.24206, -19.5536, -0.588592, -2.99206, -19.5536, -0.588592, -0.992058, -19.0536, -0.588592, 0.757942, -19.5536, -0.588592, 1.00794, -19.5536, -0.588592, 3.00794, -20.8036, -0.588592, 9.00794, -21.0536, -0.588592, 8.50794, -23.0536, -0.588592, 8.50794, -23.5536, -0.588592, 9.00794, -23.0536, -0.588592, 11.2579, -20.8036, -0.588592, 11.0079, -23.5536, -0.588592, 11.0079, -19.3036, -0.588592, 11.0079, -19.0536, -0.588592, 11.5079, -17.0536, -0.588592, 11.5079, -15.3036, -0.588592, -32.9921, -15.0536, -0.588592, -32.4921, -13.0536, -0.588592, -32.4921, -11.3036, -0.588592, -32.9921, -11.0536, -0.588592, -32.4921, -9.05359, -0.588592, -32.4921, -23.3036, -0.588592, -56.9921, -23.0536, -0.588592, -56.4921, -21.0536, -0.588592, -56.4921, -19.0536, -0.588592, -56.4921, -17.0536, -0.588592, -56.4921, -15.5536, -0.588592, -70.9921, -15.5536, -0.588592, -68.9921, -15.0536, -0.588592, -68.7421, -15.0536, -0.588592, -67.2421, -15.5536, -0.588592, -66.9921, -15.5536, -0.588592, -64.9921, -15.0536, -0.588592, -63.2421, -15.5536, -0.588592, -62.9921, -15.5536, -0.588592, -60.9921, -43.5536, -0.588592, -50.9921, -43.5536, -0.588592, -48.9921, -43.0536, -0.588592, -48.7421, -39.3036, -0.588592, -48.9921, -39.0536, -0.588592, -48.4921, -37.0536, -0.588592, -48.4921, -35.3036, -0.588592, -52.9921, -35.0536, -0.588592, -52.4921, -33.0536, -0.588592, -52.4921, -27.0536, -0.588592, -55.2421, -27.5536, -0.588592, -54.9921, -27.5536, -0.588592, -52.9921, -27.0536, -0.588592, -51.2421, -27.5536, -0.588592, -50.9921, -27.5536, -0.588592, -48.9921, -27.0536, -0.588592, -48.4921, -24.8036, -0.588592, -48.9921, -25.0536, -0.588592, -51.2421, -25.0536, -0.588592, -48.4921, -23.0536, -0.588592, -47.2421, -23.5536, -0.588592, -46.9921, -23.5536, -0.588592, -44.9921, -23.0536, -0.588592, -43.2421, -23.5536, -0.588592, -42.9921, -23.5536, -0.588592, -40.9921, -27.5536, -0.588592, -34.9921, -27.5536, -0.588592, -32.9921, -27.0536, -0.588592, -32.7421, -32.8036, -0.588592, -30.9921, -33.0536, -0.588592, -31.4921, -35.0536, -0.588592, -31.4921, -35.5536, -0.588592, -30.9921, -35.0536, -0.588592, -28.7421, -32.8036, -0.588592, -28.9921, -35.5536, -0.588592, -28.9921, -43.0536, -0.588592, -47.2421, -43.5536, -0.588592, -46.9921, -43.5536, -0.588592, -44.9921, -43.0536, -0.588592, -43.2421, -43.5536, -0.588592, -42.9921, -43.5536, -0.588592, -40.9921, -43.0536, -0.588592, -39.2421, -43.5536, -0.588592, -38.9921, -43.5536, -0.588592, -36.9921, -43.0536, -0.588592, -35.2421, -43.5536, -0.588592, -34.9921, -43.5536, -0.588592, -32.9921, -43.0536, -0.588592, -31.2421, -43.5536, -0.588592, -30.9921, -43.5536, -0.588592, -28.9921, -43.0536, -0.588592, -27.2421, -43.5536, -0.588592, -26.9921, -43.5536, -0.588592, -24.9921, -43.0536, -0.588592, -24.7421, -41.0536, -0.588592, -24.7421, -40.8036, -0.588592, -26.9921, -43.0536, -0.588592, -23.2421, -43.5536, -0.588592, -22.9921, -43.5536, -0.588592, -20.9921, -43.0536, -0.588592, -20.7421, -41.0536, -0.588592, -20.7421, -40.8036, -0.588592, -22.9921, -40.3036, -0.588592, -4.99206, -40.3036, -0.588592, -6.99206, -41.0536, -0.588592, -7.24206, -41.0536, -0.588592, -8.74206, -40.3036, -0.588592, -8.99206, -40.3036, -0.588592, -10.9921, -41.0536, -0.588592, -12.7421, -40.3036, -0.588592, -12.9921, -40.3036, -0.588592, -14.9921, -36.3036, -0.588592, -16.9921, -36.3036, -0.588592, -18.9921, -36.3036, -0.588592, -20.9921, -36.3036, -0.588592, -22.9921, -37.0536, -0.588592, -23.2421, -39.0536, -0.588592, -23.2421, -32.3036, -0.588592, -24.9921, -32.3036, -0.588592, -26.9921, -33.0536, -0.588592, -27.2421, -35.3036, -0.588592, -26.9921, -24.3036, -0.588592, -28.9921, -24.3036, -0.588592, -30.9921, -25.0536, -0.588592, -31.2421, -27.3036, -0.588592, -30.9921, -28.8036, -0.588592, -28.9921, -25.0536, -0.588592, -28.4921, -20.3036, -0.588592, 15.0079, -20.3036, -0.588592, 13.0079, -21.0536, -0.588592, 12.7579, -16.3036, -0.588592, 11.0079, -16.3036, -0.588592, 9.00794, -17.0536, -0.588592, 8.75794, -19.0536, -0.588592, 8.75794, -17.0536, -0.588592, 7.25794, -16.3036, -0.588592, 7.00794, -16.3036, -0.588592, 5.00794, -17.0536, -0.588592, 4.75794, -17.0536, -0.588592, 3.25794, -16.3036, -0.588592, 3.00794, -16.3036, -0.588592, 1.00794, -17.0536, -0.588592, -0.742058, -16.3036, -0.588592, -0.992058, -16.3036, -0.588592, -2.99206, -17.0536, -0.588592, -4.74206, -16.3036, -0.588592, -4.99206, -16.3036, -0.588592, -6.99206, -17.0536, -0.588592, -8.74206, -16.3036, -0.588592, -8.99206, -16.3036, -0.588592, -10.9921, -17.0536, -0.588592, -12.7421, -16.3036, -0.588592, -12.9921, -16.3036, -0.588592, -14.9921, -17.0536, -0.588592, -16.7421, -16.3036, -0.588592, -16.9921, -16.3036, -0.588592, -18.9921, -17.0536, -0.588592, -20.7421, -16.3036, -0.588592, -20.9921, -16.3036, -0.588592, -22.9921, -17.0536, -0.588592, -24.7421, -16.3036, -0.588592, -24.9921, -16.3036, -0.588592, -26.9921, -17.0536, -0.588592, -28.7421, -16.3036, -0.588592, -28.9921, -16.3036, -0.588592, -30.9921, -8.30359, -0.588592, -32.9921, -8.30359, -0.588592, -34.9921, -12.8036, -0.588592, -34.9921, -13.0536, -0.588592, -35.7421, -15.0536, -0.588592, -35.7421, -16.8036, -0.588592, -34.9921, -17.0536, -0.588592, -35.7421, -19.0536, -0.588592, -35.7421, -19.3036, -0.588592, -34.9921, -19.0536, -0.588592, -32.7421, -17.0536, -0.588592, -32.7421, -21.0536, -0.588592, -36.7421, -20.3036, -0.588592, -36.9921, -20.3036, -0.588592, -38.9921, -21.0536, -0.588592, -39.2421, -21.0536, -0.588592, -40.7421, -20.3036, -0.588592, -40.9921, -20.3036, -0.588592, -42.9921, -21.0536, -0.588592, -44.7421, -20.3036, -0.588592, -44.9921, -20.3036, -0.588592, -46.9921, -21.0536, -0.588592, -48.7421, -20.3036, -0.588592, -48.9921, -20.3036, -0.588592, -50.9921, -23.0536, -0.588592, -48.7421, -25.0536, -0.588592, -52.7421, -24.3036, -0.588592, -52.9921, -24.3036, -0.588592, -54.9921, -12.3036, -0.588592, -56.9921, -12.3036, -0.588592, -58.9921, -13.0536, -0.588592, -59.2421, -15.3036, -0.588592, -58.9921, -16.8036, -0.588592, -56.9921, -13.0536, -0.588592, -56.4921, -13.0536, -0.588592, -60.7421, -12.3036, -0.588592, -60.9921, -12.3036, -0.588592, -62.9921, -13.0536, -0.588592, -64.7421, -12.3036, -0.588592, -64.9921, -12.3036, -0.588592, -66.9921, -13.0536, -0.588592, -68.7421, -12.3036, -0.588592, -68.9921, -12.3036, -0.588592, -70.9921, -16.8036, -0.588592, -58.9921, -17.0536, -0.588592, -59.7421, -19.0536, -0.588592, -59.7421, -21.0536, -0.588592, -59.7421, -23.0536, -0.588592, -59.7421, -24.8036, -0.588592, -58.9921, -25.0536, -0.588592, -59.7421, -27.0536, -0.588592, -59.7421, -27.3036, -0.588592, -58.9921, -27.3036, -0.588592, -56.9921, -24.8036, -0.588592, -56.9921, -28.8036, -0.588592, -58.9921, -29.0536, -0.588592, -59.7421, -31.0536, -0.588592, -59.7421, -32.8036, -0.588592, -58.9921, -33.0536, -0.588592, -59.7421, -35.0536, -0.588592, -59.7421, -36.8036, -0.588592, -54.9921, -37.0536, -0.588592, -55.7421, -39.0536, -0.588592, -55.7421, -39.5536, -0.588592, -54.9921, -39.0536, -0.588592, -51.2421, -37.0536, -0.588592, -52.7421, -40.8036, -0.588592, -50.9921, -41.0536, -0.588592, -51.7421, -43.0536, -0.588592, -51.7421, -41.0536, -0.588592, -48.7421, -36.3036, -0.588592, -48.9921, -36.3036, -0.588592, -50.9921, -37.0536, -0.588592, -51.2421, -32.3036, -0.588592, -52.9921, -32.3036, -0.588592, -54.9921, -33.0536, -0.588592, -55.2421, -35.0536, -0.588592, -55.2421, -24.8036, -0.588592, -34.9921, -25.0536, -0.588592, -35.7421, -27.0536, -0.588592, -35.7421, -24.8036, -0.588592, -32.9921, -41.0536, -0.588592, -28.7421, -40.3036, -0.588592, -28.9921, -40.3036, -0.588592, -30.9921, -41.0536, -0.588592, -32.7421, -40.3036, -0.588592, -32.9921, -40.3036, -0.588592, -34.9921, -41.0536, -0.588592, -36.7421, -40.3036, -0.588592, -36.9921, -40.3036, -0.588592, -38.9921, -41.0536, -0.588592, -40.7421, -40.3036, -0.588592, -40.9921, -40.3036, -0.588592, -42.9921, -41.0536, -0.588592, -44.7421, -40.3036, -0.588592, -44.9921, -40.3036, -0.588592, -46.9921, -41.0536, -0.588592, -39.2421, -43.0536, -0.588592, -40.7421, -41.0536, -0.588592, -15.2421, -43.0536, -0.588592, -12.7421, -41.0536, -0.588592, -11.2421, -43.0536, -0.588592, -8.74206, -17.0536, -0.588592, -31.2421, -28.8036, -0.588592, -30.9921, -29.0536, -0.588592, -31.4921, -12.8036, -0.588592, -32.9921, -19.0536, -0.588592, -28.7421, -17.0536, -0.588592, -27.2421, -19.0536, -0.588592, -24.7421, -17.0536, -0.588592, -23.2421, -19.0536, -0.588592, -20.7421, -17.0536, -0.588592, -19.2421, -19.0536, -0.588592, -16.7421, -17.0536, -0.588592, -15.2421, -19.0536, -0.588592, -12.7421, -17.0536, -0.588592, -11.2421, -19.0536, -0.588592, -8.74206, -17.0536, -0.588592, -7.24206, -19.0536, -0.588592, -4.74206, -17.0536, -0.588592, -3.24206, -19.0536, -0.588592, -0.742058, -17.0536, -0.588592, 0.757942, -19.0536, -0.588592, 3.25794, -41.0536, -0.588592, -31.2421, -43.0536, -0.588592, -32.7421, -23.0536, -0.588592, -40.7421, -21.0536, -0.588592, -43.2421, -23.5536, -0.588592, -36.9921, -23.0536, -0.588592, -36.7421, -15.3036, -0.588592, -34.9921, -41.0536, -0.588592, -35.2421, -43.0536, -0.588592, -36.7421, -23.0536, -0.588592, -44.7421, -21.0536, -0.588592, -47.2421, -27.0536, -0.588592, -52.7421, -25.0536, -0.588592, -55.2421, -23.3036, -0.588592, -58.9921, -15.0536, -0.588592, -60.7421, -13.0536, -0.588592, -63.2421, -15.0536, -0.588592, -64.7421, -13.0536, -0.588592, -67.2421, -37.0536, -0.588592, -24.7421, -39.3036, -0.588592, -24.9921, -31.3036, -0.588592, -58.9921, -31.3036, -0.588592, -56.9921, -31.0536, -0.588592, -56.4921, -19.0536, -0.588592, 7.25794, -43.0536, -0.588592, -28.7421, -41.0536, -0.588592, -43.2421, -43.0536, -0.588592, -44.7421, -41.0536, -0.588592, -47.2421, -32.8036, -0.588592, -56.9921, -43.5536, -0.588592, -4.99206, -43.0536, -0.588592, -4.49206, -41.0536, -0.588592, -4.49206, -23.5536, -0.588592, 15.0079, -23.0536, -0.588592, 15.5079, -21.0536, -0.588592, 15.5079, -13.0536, -0.588592, -71.4921, -15.0536, -0.588592, -71.4921, -39.3036, -0.588592, -26.9921, -39.0536, -0.588592, -27.4921, -35.5536, -0.588592, -58.9921, -19.5536, -0.588592, 7.00794, -37.8036, -0.588592, 35.5079, -37.0536, -0.588592, 35.5079, -36.8036, -0.588592, 35.0079, -38.0536, -0.588592, 34.7579, 14.9464, -0.588592, 19.2579, 15.6964, -0.588592, 19.0079, 15.6964, -0.588592, 18.2579, 14.1964, -0.588592, 18.0079, 19.9464, -0.588592, 12.2579, 16.9464, -0.588592, 13.5079, 12.9464, -0.588592, 15.2579, 14.4464, -0.588592, 15.0079, 8.69641, -0.588592, 23.0079, 11.1964, -0.588592, 23.0079, 14.9464, -0.588592, 20.7579, 32.4464, -0.588592, 17.0079, 32.4464, -0.588592, 18.0079, 33.1964, -0.588592, 18.2579, 32.9464, -0.588592, 16.5079, 15.6964, -0.588592, 10.0079, 15.6964, -0.588592, 9.00794, 14.9464, -0.588592, 8.75794, 14.4464, -0.588592, 10.2579, 14.4464, -0.588592, 13.2579, -33.8036, -0.588592, 49.7579, -33.5536, -0.588592, 51.2579, -33.0536, -0.588592, 51.2579, -33.0536, -0.588592, 37.0079, -33.5536, -0.588592, 38.2579, 14.9464, -0.588592, -31.2421, 14.9464, -0.588592, -32.7421, 12.9464, -0.588592, -32.7421, 12.9464, -0.588592, -31.2421, -36.3036, -0.588592, 37.0079, -37.8036, -0.588592, 37.0079, -38.0536, -0.588592, 37.7579, -36.0536, -0.588592, 38.2579, -43.3036, -0.588592, 45.5079, -48.0536, -0.588592, 49.7579, -47.8036, -0.588592, 51.2579, -36.5536, -0.588592, 51.2579, -36.3036, -0.588592, 49.7579, -40.5536, -0.588592, 45.2579, 14.9464, -0.588592, -35.2421, 14.9464, -0.588592, -35.7421, 12.9464, -0.588592, -35.7421, -43.5536, -0.588592, 33.0079, -43.5536, -0.588592, 34.7579, -42.5536, -0.588592, 35.0079, -40.8036, -0.588592, 33.0079, -41.0536, -0.588592, 32.5079, -43.0536, -0.588592, 32.5079, -31.3036, -0.588592, 35.0079, -31.0536, -0.588592, 35.5079, -29.0536, -0.588592, 35.5079, -28.8036, -0.588592, 35.0079, -23.3036, -0.588592, 35.0079, -23.0536, -0.588592, 35.5079, -21.0536, -0.588592, 35.5079, -20.3036, -0.588592, 35.0079, -20.3036, -0.588592, 33.0079, -21.0536, -0.588592, 32.7579, -19.3036, -0.588592, 23.0079, -19.0536, -0.588592, 23.5079, -17.0536, -0.588592, 23.5079, -15.3036, -0.588592, 23.0079, -15.0536, -0.588592, 23.5079, -13.0536, -0.588592, 23.5079, -11.3036, -0.588592, 23.0079, -11.0536, -0.588592, 23.5079, -9.05359, -0.588592, 23.5079, -7.30359, -0.588592, 23.0079, -7.05359, -0.588592, 23.5079, -5.05359, -0.588592, 23.5079, -3.30359, -0.588592, 23.0079, -3.05359, -0.588592, 23.5079, -1.05359, -0.588592, 23.5079, 0.696411, -0.588592, 23.0079, 0.946411, -0.588592, 23.5079, 2.94641, -0.588592, 23.5079, 4.69641, -0.588592, 23.0079, 4.94641, -0.588592, 23.5079, 6.94641, -0.588592, 23.5079, 7.19641, -0.588592, 23.0079, 8.94641, -0.588592, 23.5079, 10.9464, -0.588592, 23.5079, 16.6964, -0.588592, -4.99206, 16.9464, -0.588592, -4.49206, 18.9464, -0.588592, -4.49206, 24.9464, -0.588592, -3.24206, 24.4464, -0.588592, -2.99206, 24.4464, -0.588592, -0.992058, 24.9464, -0.588592, -0.492058, 28.6964, -0.588592, -0.992058, 27.1964, -0.588592, -2.99206, 28.9464, -0.588592, 0.757942, 28.4464, -0.588592, 1.00794, 28.4464, -0.588592, 3.00794, 28.9464, -0.588592, 3.50794, 32.6964, -0.588592, 3.00794, 31.1964, -0.588592, 1.00794, 35.1964, -0.588592, 7.00794, 32.9464, -0.588592, 4.75794, 32.4464, -0.588592, 5.00794, 32.4464, -0.588592, 7.00794, 32.9464, -0.588592, 7.50794, 34.9464, -0.588592, 7.50794, -19.3036, -0.588592, 21.0079, -20.8036, -0.588592, 21.0079, -23.0536, -0.588592, 23.2579, -23.0536, -0.588592, 24.7579, -20.8036, -0.588592, 23.0079, 36.6964, -0.588592, 7.00794, 36.9464, -0.588592, 7.50794, 38.9464, -0.588592, 7.50794, 40.6964, -0.588592, 7.00794, 40.9464, -0.588592, 7.50794, 42.9464, -0.588592, 7.50794, 43.1964, -0.588592, 5.00794, 42.9464, -0.588592, 4.50794, 40.9464, -0.588592, 4.50794, 39.1964, -0.588592, 5.00794, 38.9464, -0.588592, 4.50794, 36.9464, -0.588592, 4.50794, 34.9464, -0.588592, 0.507942, 32.9464, -0.588592, 0.507942, 32.6964, -0.588592, 1.00794, 34.9464, -0.588592, 3.25794, 35.6964, -0.588592, 3.00794, 35.6964, -0.588592, 1.00794, 30.9464, -0.588592, -3.49206, 28.9464, -0.588592, -3.49206, 28.6964, -0.588592, -2.99206, 30.9464, -0.588592, -0.742058, 31.6964, -0.588592, -0.992058, 31.6964, -0.588592, -2.99206, 26.9464, -0.588592, -7.49206, 24.9464, -0.588592, -7.49206, 24.6964, -0.588592, -6.99206, 26.9464, -0.588592, -4.74206, 27.6964, -0.588592, -4.99206, 27.6964, -0.588592, -6.99206, 23.1964, -0.588592, -6.99206, 22.9464, -0.588592, -7.49206, 20.9464, -0.588592, -7.49206, 20.6964, -0.588592, -6.99206, 19.1964, -0.588592, -6.99206, 18.9464, -0.588592, -7.49206, 16.9464, -0.588592, -7.49206, 12.4464, -0.588592, -34.9921, 12.4464, -0.588592, -32.9921, 12.4464, -0.588592, -30.9921, 12.4464, -0.588592, -28.9921, 12.9464, -0.588592, -27.2421, 12.4464, -0.588592, -26.9921, 12.4464, -0.588592, -24.9921, 12.9464, -0.588592, -23.2421, 12.4464, -0.588592, -22.9921, 12.4464, -0.588592, -20.9921, 12.9464, -0.588592, -19.2421, 12.4464, -0.588592, -18.9921, 12.4464, -0.588592, -16.9921, 12.9464, -0.588592, -15.2421, 12.4464, -0.588592, -14.9921, 12.4464, -0.588592, -12.9921, 12.9464, -0.588592, -11.2421, 12.4464, -0.588592, -10.9921, 12.4464, -0.588592, -8.99206, 12.9464, -0.588592, -7.24206, 12.4464, -0.588592, -6.99206, 12.4464, -0.588592, -4.99206, 12.9464, -0.588592, -3.24206, 12.4464, -0.588592, -2.99206, 12.4464, -0.588592, -0.992058, 12.9464, -0.588592, 0.757942, 12.4464, -0.588592, 1.00794, 12.4464, -0.588592, 3.00794, 12.9464, -0.588592, 4.75794, 12.4464, -0.588592, 5.00794, 12.4464, -0.588592, 7.00794, 12.9464, -0.588592, 8.75794, 12.4464, -0.588592, 9.00794, 12.4464, -0.588592, 11.0079, 12.9464, -0.588592, 11.2579, 12.9464, -0.588592, 12.7579, 12.4464, -0.588592, 13.0079, 12.4464, -0.588592, 15.0079, 11.1964, -0.588592, 21.0079, 10.9464, -0.588592, 20.5079, 8.94641, -0.588592, 20.5079, 8.69641, -0.588592, 21.0079, 7.19641, -0.588592, 21.0079, 6.94641, -0.588592, 20.5079, 4.94641, -0.588592, 20.5079, 4.69641, -0.588592, 21.0079, 3.19641, -0.588592, 21.0079, 2.94641, -0.588592, 20.5079, 0.946411, -0.588592, 20.5079, -0.803589, -0.588592, 21.0079, -1.05359, -0.588592, 20.5079, -3.05359, -0.588592, 20.5079, -4.80359, -0.588592, 21.0079, -5.05359, -0.588592, 20.5079, -7.05359, -0.588592, 20.5079, -8.80359, -0.588592, 21.0079, -9.05359, -0.588592, 20.5079, -11.0536, -0.588592, 20.5079, -12.8036, -0.588592, 21.0079, -13.0536, -0.588592, 20.5079, -15.0536, -0.588592, 20.5079, -16.8036, -0.588592, 21.0079, -17.0536, -0.588592, 20.5079, -19.0536, -0.588592, 20.5079, -21.0536, -0.588592, 20.5079, -23.0536, -0.588592, 20.5079, -23.5536, -0.588592, 21.0079, -23.5536, -0.588592, 23.0079, 14.9464, -0.588592, -23.2421, 14.9464, -0.588592, -24.7421, 12.9464, -0.588592, -24.7421, -23.5536, -0.588592, 25.0079, -23.5536, -0.588592, 27.0079, -23.0536, -0.588592, 28.7579, -23.5536, -0.588592, 29.0079, -23.5536, -0.588592, 31.0079, -28.8036, -0.588592, 33.0079, -29.0536, -0.588592, 32.5079, -31.0536, -0.588592, 32.5079, -31.3036, -0.588592, 33.0079, -32.8036, -0.588592, 33.0079, -33.0536, -0.588592, 32.5079, -35.0536, -0.588592, 32.5079, -35.3036, -0.588592, 33.0079, -36.8036, -0.588592, 33.0079, -37.0536, -0.588592, 32.5079, -39.0536, -0.588592, 32.5079, -39.3036, -0.588592, 33.0079, -21.0536, -0.588592, 31.2579, -23.0536, -0.588592, 31.2579, -23.3036, -0.588592, 33.0079, 14.9464, -0.588592, -7.24206, 14.9464, -0.588592, -8.74206, 12.9464, -0.588592, -8.74206, -20.3036, -0.588592, 31.0079, -20.3036, -0.588592, 29.0079, -21.0536, -0.588592, 27.2579, -20.3036, -0.588592, 27.0079, -20.3036, -0.588592, 25.0079, 15.6964, -0.588592, 23.0079, 15.6964, -0.588592, 21.0079, 14.9464, -0.588592, 23.5079, 32.6964, -0.588592, 22.7579, 32.9464, -0.588592, 23.5079, 34.9464, -0.588592, 23.5079, 35.6964, -0.588592, 23.0079, 34.9464, -0.588592, 20.7579, 32.9464, -0.588592, 21.2579, 35.6964, -0.588592, 21.0079, 34.9464, -0.588592, 19.2579, 35.6964, -0.588592, 19.0079, 35.6964, -0.588592, 17.0079, 34.9464, -0.588592, 16.5079, 14.9464, -0.588592, 7.25794, 15.6964, -0.588592, 7.00794, 15.6964, -0.588592, 5.00794, 14.9464, -0.588592, 3.25794, 15.6964, -0.588592, 3.00794, 15.6964, -0.588592, 1.00794, 14.9464, -0.588592, -0.742058, 15.6964, -0.588592, -0.992058, 15.6964, -0.588592, -2.99206, 14.9464, -0.588592, -15.2421, 14.9464, -0.588592, -16.7421, 12.9464, -0.588592, -16.7421, -43.5536, -0.588592, 42.7579, -48.0536, -0.588592, 38.2579, -50.5536, -0.588592, 38.2579, -50.5536, -0.588592, 49.7579, 15.6964, -0.588592, -8.99206, 15.6964, -0.588592, -10.9921, 14.9464, -0.588592, -12.7421, 15.6964, -0.588592, -12.9921, 15.6964, -0.588592, -14.9921, 15.6964, -0.588592, -16.9921, 15.6964, -0.588592, -18.9921, 14.9464, -0.588592, -20.7421, 15.6964, -0.588592, -20.9921, 15.6964, -0.588592, -22.9921, 15.6964, -0.588592, -24.9921, 15.6964, -0.588592, -26.9921, 14.9464, -0.588592, -28.7421, 15.6964, -0.588592, -28.9921, 15.6964, -0.588592, -30.9921, 15.6964, -0.588592, -32.9921, 15.6964, -0.588592, -34.9921, 36.6964, -0.588592, 5.00794, 35.1964, -0.588592, 5.00794, -21.0536, -0.588592, 28.7579, -23.0536, -0.588592, 27.2579, -21.0536, -0.588592, 24.7579, -16.8036, -0.588592, 23.0079, -15.3036, -0.588592, 21.0079, -12.8036, -0.588592, 23.0079, -11.3036, -0.588592, 21.0079, -8.80359, -0.588592, 23.0079, -7.30359, -0.588592, 21.0079, -4.80359, -0.588592, 23.0079, -3.30359, -0.588592, 21.0079, -0.803589, -0.588592, 23.0079, 0.696411, -0.588592, 21.0079, 3.19641, -0.588592, 23.0079, 24.6964, -0.588592, -4.99206, 15.1964, -0.588592, -4.99206, 16.6964, -0.588592, -6.99206, 12.9464, -0.588592, 7.25794, 14.9464, -0.588592, 4.75794, 12.9464, -0.588592, 3.25794, 14.9464, -0.588592, 0.757942, 12.9464, -0.588592, -0.742058, 14.9464, -0.588592, -3.24206, 19.1964, -0.588592, -4.99206, 39.1964, -0.588592, 7.00794, 40.6964, -0.588592, 5.00794, 43.1964, -0.588592, 7.00794, 12.9464, -0.588592, -4.74206, -40.8036, -0.588592, 42.5079, 14.9464, -0.588592, -11.2421, 12.9464, -0.588592, -12.7421, 14.9464, -0.588592, -19.2421, 12.9464, -0.588592, -20.7421, 14.9464, -0.588592, -27.2421, 12.9464, -0.588592, -28.7421, 23.1964, -0.588592, -4.99206, 12.9464, -0.588592, 20.7579, 30.1964, -0.588592, 18.2579, 31.1964, -0.588592, 18.0079, 31.1964, -0.588592, 12.2579, 27.6964, -0.588592, 12.0079, 19.9464, -0.588592, 23.7579, 20.1964, -0.588592, 27.0079, 27.6964, -0.588592, 27.0079, 27.9464, -0.588592, 23.7579, -51.0536, -0.588592, 37.0079, -51.0536, -0.588592, 51.2579, -40.8036, -0.588592, 37.7579, -42.8036, -0.588592, 37.5079, -47.8036, -0.588592, 37.0079, 30.1964, -0.588592, 21.0079, 46.9464, -0.588592, 7.50794, 47.4464, -0.588592, 7.00794, 47.4464, -0.588592, 5.00794, 46.9464, -0.588592, 4.50794, -24.8036, -0.588592, 35.0079, -24.8036, -0.588592, 33.0079, 30.1964, -0.588592, 23.7579, 30.4464, -0.588592, 22.7579, 22.9464, -0.588592, -4.49206, -25.0536, -0.588592, 35.5079, -25.0536, -0.588592, 32.5079, -33.5536, -0.588592, 35.5079, -32.8036, -0.588592, 35.0079, 12.4464, -0.588592, 19.0079, 12.9464, -0.588592, 19.2579, 17.1964, -0.588592, 12.2579, 17.1964, -0.588592, 15.2579, 16.9464, -0.588592, 23.7579, -41.0536, -0.588592, 35.0079, 27.6964, -0.588592, 8.75794, 20.1964, -0.588592, 8.75794, 16.4464, 7.41141, 8.75794, 16.4464, 7.41141, 11.2579, 19.1964, 7.41141, 11.2579, 19.1964, 7.41141, 8.75794, 28.6964, 7.41141, 8.75794, 28.6964, 7.41141, 11.2579, 31.1964, 7.41141, 11.2579, 31.1964, 7.41141, 8.75794, 28.9464, -0.588592, 9.00794, 28.9464, -0.588592, 11.0079, 30.9464, -0.588592, 11.0079, 30.9464, -0.588592, 9.00794, 16.4464, 7.41141, 24.7579, 16.4464, 7.41141, 27.5079, 19.1964, 7.41141, 27.5079, 19.1964, 7.41141, 24.7579, 28.6964, 7.41141, 24.7579, 28.6964, 7.41141, 27.2579, 31.1964, 7.41141, 27.2579, 31.1964, 7.41141, 24.7579, 16.9464, -0.588592, 25.0079, 16.9464, -0.588592, 27.0079, 18.9464, -0.588592, 27.0079, 18.9464, -0.588592, 25.0079) +polygons = [PackedInt32Array(1, 0, 2), PackedInt32Array(2, 0, 3), PackedInt32Array(5, 4, 6), PackedInt32Array(6, 4, 7), PackedInt32Array(11, 10, 8), PackedInt32Array(8, 10, 9), PackedInt32Array(15, 14, 12), PackedInt32Array(12, 14, 13), PackedInt32Array(17, 16, 18), PackedInt32Array(18, 16, 19), PackedInt32Array(19, 16, 20), PackedInt32Array(20, 16, 21), PackedInt32Array(24, 23, 22), PackedInt32Array(27, 26, 25), PackedInt32Array(30, 29, 28), PackedInt32Array(33, 32, 31), PackedInt32Array(36, 35, 34), PackedInt32Array(38, 37, 39), PackedInt32Array(39, 37, 40), PackedInt32Array(40, 37, 42), PackedInt32Array(40, 42, 41), PackedInt32Array(45, 44, 43), PackedInt32Array(48, 47, 46), PackedInt32Array(51, 50, 49), PackedInt32Array(54, 53, 52), PackedInt32Array(57, 56, 55), PackedInt32Array(60, 59, 58), PackedInt32Array(63, 62, 61), PackedInt32Array(66, 65, 64), PackedInt32Array(69, 68, 67), PackedInt32Array(71, 70, 72), PackedInt32Array(72, 70, 73), PackedInt32Array(73, 70, 75), PackedInt32Array(73, 75, 74), PackedInt32Array(74, 76, 73), PackedInt32Array(79, 78, 77), PackedInt32Array(82, 81, 80), PackedInt32Array(85, 84, 83), PackedInt32Array(88, 87, 86), PackedInt32Array(90, 89, 15), PackedInt32Array(93, 92, 91), PackedInt32Array(96, 95, 94), PackedInt32Array(99, 98, 97), PackedInt32Array(102, 101, 100), PackedInt32Array(105, 104, 103), PackedInt32Array(108, 107, 106), PackedInt32Array(111, 110, 109), PackedInt32Array(113, 112, 114), PackedInt32Array(114, 112, 115), PackedInt32Array(115, 112, 117), PackedInt32Array(115, 117, 116), PackedInt32Array(116, 118, 115), PackedInt32Array(121, 120, 119), PackedInt32Array(124, 123, 122), PackedInt32Array(127, 126, 125), PackedInt32Array(129, 128, 130), PackedInt32Array(130, 128, 131), PackedInt32Array(131, 128, 133), PackedInt32Array(131, 133, 132), PackedInt32Array(132, 134, 131), PackedInt32Array(137, 136, 135), PackedInt32Array(140, 139, 138), PackedInt32Array(143, 142, 141), PackedInt32Array(146, 145, 144), PackedInt32Array(149, 148, 147), PackedInt32Array(151, 150, 152), PackedInt32Array(152, 150, 153), PackedInt32Array(153, 150, 154), PackedInt32Array(154, 150, 155), PackedInt32Array(157, 156, 158), PackedInt32Array(158, 156, 159), PackedInt32Array(159, 156, 160), PackedInt32Array(160, 156, 161), PackedInt32Array(162, 164, 163), PackedInt32Array(167, 166, 165), PackedInt32Array(170, 169, 168), PackedInt32Array(172, 171, 11), PackedInt32Array(11, 171, 30), PackedInt32Array(11, 30, 10), PackedInt32Array(10, 30, 28), PackedInt32Array(173, 8, 174), PackedInt32Array(174, 8, 175), PackedInt32Array(175, 8, 176), PackedInt32Array(176, 8, 9), PackedInt32Array(178, 177, 179), PackedInt32Array(179, 177, 33), PackedInt32Array(179, 33, 31), PackedInt32Array(179, 31, 180), PackedInt32Array(182, 181, 183), PackedInt32Array(183, 181, 186), PackedInt32Array(183, 186, 184), PackedInt32Array(184, 186, 185), PackedInt32Array(187, 189, 188), PackedInt32Array(191, 190, 192), PackedInt32Array(192, 190, 79), PackedInt32Array(192, 79, 193), PackedInt32Array(193, 79, 77), PackedInt32Array(195, 194, 196), PackedInt32Array(196, 194, 197), PackedInt32Array(200, 199, 198), PackedInt32Array(203, 202, 201), PackedInt32Array(206, 205, 204), PackedInt32Array(209, 208, 207), PackedInt32Array(212, 211, 210), PackedInt32Array(215, 214, 213), PackedInt32Array(218, 217, 216), PackedInt32Array(221, 220, 219), PackedInt32Array(224, 223, 222), PackedInt32Array(226, 225, 0), PackedInt32Array(0, 225, 85), PackedInt32Array(0, 85, 83), PackedInt32Array(0, 83, 3), PackedInt32Array(229, 228, 227), PackedInt32Array(231, 230, 232), PackedInt32Array(232, 230, 233), PackedInt32Array(233, 230, 235), PackedInt32Array(233, 235, 234), PackedInt32Array(237, 236, 238), PackedInt32Array(238, 236, 239), PackedInt32Array(242, 241, 240), PackedInt32Array(245, 244, 243), PackedInt32Array(247, 246, 248), PackedInt32Array(248, 246, 4), PackedInt32Array(4, 246, 249), PackedInt32Array(4, 249, 7), PackedInt32Array(252, 251, 250), PackedInt32Array(254, 253, 255), PackedInt32Array(255, 253, 258), PackedInt32Array(255, 258, 256), PackedInt32Array(256, 258, 257), PackedInt32Array(261, 260, 259), PackedInt32Array(264, 263, 262), PackedInt32Array(267, 266, 265), PackedInt32Array(270, 269, 268), PackedInt32Array(272, 271, 13), PackedInt32Array(274, 273, 275), PackedInt32Array(275, 273, 276), PackedInt32Array(276, 273, 278), PackedInt32Array(276, 278, 277), PackedInt32Array(281, 280, 279), PackedInt32Array(284, 283, 282), PackedInt32Array(286, 285, 287), PackedInt32Array(287, 285, 288), PackedInt32Array(288, 285, 290), PackedInt32Array(288, 290, 289), PackedInt32Array(292, 291, 293), PackedInt32Array(293, 291, 100), PackedInt32Array(100, 291, 102), PackedInt32Array(102, 291, 294), PackedInt32Array(296, 295, 297), PackedInt32Array(297, 295, 105), PackedInt32Array(297, 105, 289), PackedInt32Array(289, 105, 103), PackedInt32Array(299, 298, 300), PackedInt32Array(300, 298, 108), PackedInt32Array(300, 108, 301), PackedInt32Array(301, 108, 106), PackedInt32Array(303, 302, 304), PackedInt32Array(304, 302, 125), PackedInt32Array(125, 302, 305), PackedInt32Array(125, 305, 127), PackedInt32Array(308, 307, 306), PackedInt32Array(311, 310, 309), PackedInt32Array(314, 313, 312), PackedInt32Array(317, 316, 315), PackedInt32Array(320, 319, 318), PackedInt32Array(141, 322, 321), PackedInt32Array(321, 322, 315), PackedInt32Array(324, 24, 168), PackedInt32Array(168, 24, 22), PackedInt32Array(168, 22, 323), PackedInt32Array(168, 323, 170), PackedInt32Array(326, 27, 165), PackedInt32Array(165, 27, 25), PackedInt32Array(165, 25, 325), PackedInt32Array(165, 325, 167), PackedInt32Array(235, 327, 234), PackedInt32Array(234, 327, 43), PackedInt32Array(128, 34, 133), PackedInt32Array(328, 184, 185), PackedInt32Array(185, 36, 328), PackedInt32Array(328, 36, 329), PackedInt32Array(329, 36, 34), PackedInt32Array(329, 34, 128), PackedInt32Array(227, 3, 330), PackedInt32Array(330, 3, 83), PackedInt32Array(331, 45, 222), PackedInt32Array(222, 45, 43), PackedInt32Array(222, 43, 327), PackedInt32Array(222, 327, 224), PackedInt32Array(333, 48, 219), PackedInt32Array(219, 48, 46), PackedInt32Array(219, 46, 332), PackedInt32Array(219, 332, 221), PackedInt32Array(335, 51, 216), PackedInt32Array(216, 51, 49), PackedInt32Array(216, 49, 334), PackedInt32Array(216, 334, 218), PackedInt32Array(337, 54, 213), PackedInt32Array(213, 54, 52), PackedInt32Array(213, 52, 336), PackedInt32Array(213, 336, 215), PackedInt32Array(339, 57, 210), PackedInt32Array(210, 57, 55), PackedInt32Array(210, 55, 338), PackedInt32Array(210, 338, 212), PackedInt32Array(341, 60, 207), PackedInt32Array(207, 60, 58), PackedInt32Array(207, 58, 340), PackedInt32Array(207, 340, 209), PackedInt32Array(343, 63, 204), PackedInt32Array(204, 63, 61), PackedInt32Array(204, 61, 342), PackedInt32Array(204, 342, 206), PackedInt32Array(345, 66, 201), PackedInt32Array(201, 66, 64), PackedInt32Array(201, 64, 344), PackedInt32Array(201, 344, 203), PackedInt32Array(347, 69, 198), PackedInt32Array(198, 69, 67), PackedInt32Array(198, 67, 346), PackedInt32Array(198, 346, 200), PackedInt32Array(147, 349, 348), PackedInt32Array(348, 349, 309), PackedInt32Array(55, 337, 338), PackedInt32Array(338, 337, 213), PackedInt32Array(210, 340, 339), PackedInt32Array(339, 340, 58), PackedInt32Array(350, 240, 239), PackedInt32Array(61, 341, 342), PackedInt32Array(342, 341, 207), PackedInt32Array(52, 335, 336), PackedInt32Array(336, 335, 216), PackedInt32Array(301, 106, 285), PackedInt32Array(285, 106, 290), PackedInt32Array(350, 124, 240), PackedInt32Array(240, 124, 122), PackedInt32Array(240, 122, 351), PackedInt32Array(240, 351, 242), PackedInt32Array(219, 334, 333), PackedInt32Array(333, 334, 49), PackedInt32Array(353, 352, 236), PackedInt32Array(236, 352, 239), PackedInt32Array(239, 352, 350), PackedInt32Array(330, 82, 227), PackedInt32Array(227, 82, 80), PackedInt32Array(227, 80, 354), PackedInt32Array(227, 354, 229), PackedInt32Array(201, 346, 345), PackedInt32Array(345, 346, 67), PackedInt32Array(41, 233, 40), PackedInt32Array(40, 233, 234), PackedInt32Array(144, 356, 355), PackedInt32Array(355, 356, 312), PackedInt32Array(204, 344, 343), PackedInt32Array(343, 344, 64), PackedInt32Array(357, 121, 243), PackedInt32Array(243, 121, 119), PackedInt32Array(243, 119, 358), PackedInt32Array(243, 358, 245), PackedInt32Array(290, 297, 289), PackedInt32Array(359, 111, 250), PackedInt32Array(250, 111, 109), PackedInt32Array(250, 109, 360), PackedInt32Array(250, 360, 252), PackedInt32Array(14, 88, 13), PackedInt32Array(13, 88, 86), PackedInt32Array(13, 86, 361), PackedInt32Array(13, 361, 272), PackedInt32Array(257, 90, 268), PackedInt32Array(268, 90, 15), PackedInt32Array(268, 15, 12), PackedInt32Array(268, 12, 270), PackedInt32Array(362, 99, 259), PackedInt32Array(259, 99, 97), PackedInt32Array(259, 97, 363), PackedInt32Array(259, 363, 261), PackedInt32Array(364, 96, 262), PackedInt32Array(262, 96, 94), PackedInt32Array(262, 94, 365), PackedInt32Array(262, 365, 264), PackedInt32Array(175, 176, 366), PackedInt32Array(366, 176, 367), PackedInt32Array(250, 117, 359), PackedInt32Array(359, 117, 112), PackedInt32Array(277, 279, 276), PackedInt32Array(75, 70, 77), PackedInt32Array(77, 70, 193), PackedInt32Array(259, 255, 362), PackedInt32Array(362, 255, 256), PackedInt32Array(369, 368, 370), PackedInt32Array(370, 368, 281), PackedInt32Array(370, 281, 279), PackedInt32Array(370, 279, 277), PackedInt32Array(194, 192, 371), PackedInt32Array(371, 192, 193), PackedInt32Array(243, 351, 357), PackedInt32Array(357, 351, 122), PackedInt32Array(42, 353, 41), PackedInt32Array(41, 353, 236), PackedInt32Array(372, 149, 306), PackedInt32Array(306, 149, 147), PackedInt32Array(306, 147, 348), PackedInt32Array(306, 348, 308), PackedInt32Array(349, 146, 309), PackedInt32Array(309, 146, 144), PackedInt32Array(309, 144, 355), PackedInt32Array(309, 355, 311), PackedInt32Array(356, 143, 312), PackedInt32Array(312, 143, 141), PackedInt32Array(312, 141, 321), PackedInt32Array(312, 321, 314), PackedInt32Array(322, 140, 315), PackedInt32Array(315, 140, 138), PackedInt32Array(315, 138, 373), PackedInt32Array(315, 373, 317), PackedInt32Array(374, 137, 318), PackedInt32Array(318, 137, 135), PackedInt32Array(318, 135, 375), PackedInt32Array(318, 375, 320), PackedInt32Array(135, 102, 375), PackedInt32Array(375, 102, 294), PackedInt32Array(94, 93, 365), PackedInt32Array(365, 93, 265), PackedInt32Array(165, 164, 326), PackedInt32Array(305, 302, 37), PackedInt32Array(37, 302, 42), PackedInt32Array(25, 324, 325), PackedInt32Array(325, 324, 168), PackedInt32Array(222, 332, 331), PackedInt32Array(331, 332, 46), PackedInt32Array(22, 19, 323), PackedInt32Array(323, 19, 20), PackedInt32Array(198, 197, 347), PackedInt32Array(153, 154, 156), PackedInt32Array(156, 154, 161), PackedInt32Array(372, 306, 150), PackedInt32Array(150, 306, 155), PackedInt32Array(86, 278, 361), PackedInt32Array(361, 278, 273), PackedInt32Array(159, 160, 16), PackedInt32Array(16, 160, 21), PackedInt32Array(369, 376, 368), PackedInt32Array(368, 376, 282), PackedInt32Array(378, 377, 379), PackedInt32Array(379, 377, 162), PackedInt32Array(162, 377, 164), PackedInt32Array(164, 377, 326), PackedInt32Array(381, 380, 382), PackedInt32Array(382, 380, 187), PackedInt32Array(187, 380, 189), PackedInt32Array(189, 380, 74), PackedInt32Array(384, 383, 91), PackedInt32Array(91, 383, 267), PackedInt32Array(91, 267, 265), PackedInt32Array(91, 265, 93), PackedInt32Array(97, 364, 363), PackedInt32Array(363, 364, 262), PackedInt32Array(20, 21, 28), PackedInt32Array(28, 21, 10), PackedInt32Array(176, 9, 161), PackedInt32Array(161, 9, 160), PackedInt32Array(354, 80, 230), PackedInt32Array(230, 80, 235), PackedInt32Array(385, 367, 155), PackedInt32Array(155, 367, 154), PackedInt32Array(133, 179, 132), PackedInt32Array(132, 179, 180), PackedInt32Array(385, 386, 367), PackedInt32Array(367, 386, 366), PackedInt32Array(366, 386, 31), PackedInt32Array(31, 386, 180), PackedInt32Array(75, 189, 74), PackedInt32Array(268, 256, 257), PackedInt32Array(249, 116, 7), PackedInt32Array(7, 116, 117), PackedInt32Array(284, 282, 387), PackedInt32Array(387, 282, 376), PackedInt32Array(387, 376, 300), PackedInt32Array(387, 300, 301), PackedInt32Array(318, 373, 374), PackedInt32Array(374, 373, 138), PackedInt32Array(289, 103, 291), PackedInt32Array(291, 103, 294), PackedInt32Array(109, 277, 360), PackedInt32Array(360, 277, 278), PackedInt32Array(119, 249, 358), PackedInt32Array(358, 249, 246), PackedInt32Array(184, 127, 183), PackedInt32Array(183, 127, 305), PackedInt32Array(371, 388, 194), PackedInt32Array(194, 388, 197), PackedInt32Array(197, 388, 347), PackedInt32Array(390, 389, 391), PackedInt32Array(391, 389, 392), PackedInt32Array(394, 393, 395), PackedInt32Array(395, 393, 396), PackedInt32Array(399, 398, 400), PackedInt32Array(400, 398, 397), PackedInt32Array(403, 402, 401), PackedInt32Array(405, 404, 406), PackedInt32Array(406, 404, 407), PackedInt32Array(409, 408, 410), PackedInt32Array(410, 408, 411), PackedInt32Array(399, 412, 398), PackedInt32Array(414, 413, 415), PackedInt32Array(415, 413, 417), PackedInt32Array(415, 417, 416), PackedInt32Array(421, 420, 418), PackedInt32Array(418, 420, 419), PackedInt32Array(423, 422, 424), PackedInt32Array(424, 422, 425), PackedInt32Array(430, 429, 431), PackedInt32Array(431, 429, 426), PackedInt32Array(426, 429, 427), PackedInt32Array(427, 429, 428), PackedInt32Array(434, 433, 432), PackedInt32Array(435, 440, 436), PackedInt32Array(436, 440, 437), PackedInt32Array(437, 440, 439), PackedInt32Array(437, 439, 438), PackedInt32Array(442, 441, 443), PackedInt32Array(443, 441, 444), PackedInt32Array(446, 445, 447), PackedInt32Array(447, 445, 448), PackedInt32Array(448, 445, 450), PackedInt32Array(448, 450, 449), PackedInt32Array(453, 452, 451), PackedInt32Array(456, 455, 454), PackedInt32Array(459, 458, 457), PackedInt32Array(462, 461, 460), PackedInt32Array(465, 464, 463), PackedInt32Array(468, 467, 466), PackedInt32Array(470, 469, 471), PackedInt32Array(471, 469, 472), PackedInt32Array(473, 401, 474), PackedInt32Array(474, 401, 402), PackedInt32Array(477, 476, 475), PackedInt32Array(479, 478, 480), PackedInt32Array(480, 478, 481), PackedInt32Array(481, 478, 483), PackedInt32Array(481, 483, 482), PackedInt32Array(485, 484, 486), PackedInt32Array(486, 484, 487), PackedInt32Array(487, 484, 489), PackedInt32Array(487, 489, 488), PackedInt32Array(495, 494, 490), PackedInt32Array(490, 494, 493), PackedInt32Array(490, 493, 492), PackedInt32Array(490, 492, 491), PackedInt32Array(496, 500, 497), PackedInt32Array(497, 500, 498), PackedInt32Array(498, 500, 499), PackedInt32Array(503, 502, 501), PackedInt32Array(506, 505, 504), PackedInt32Array(509, 508, 507), PackedInt32Array(512, 511, 510), PackedInt32Array(514, 513, 515), PackedInt32Array(515, 513, 518), PackedInt32Array(515, 518, 516), PackedInt32Array(516, 518, 517), PackedInt32Array(520, 519, 521), PackedInt32Array(521, 519, 524), PackedInt32Array(521, 524, 522), PackedInt32Array(522, 524, 523), PackedInt32Array(526, 525, 527), PackedInt32Array(527, 525, 530), PackedInt32Array(527, 530, 528), PackedInt32Array(528, 530, 529), PackedInt32Array(532, 531, 533), PackedInt32Array(533, 531, 534), PackedInt32Array(537, 536, 535), PackedInt32Array(420, 539, 538), PackedInt32Array(541, 540, 421), PackedInt32Array(544, 543, 542), PackedInt32Array(547, 546, 545), PackedInt32Array(550, 549, 548), PackedInt32Array(553, 552, 551), PackedInt32Array(556, 555, 554), PackedInt32Array(559, 558, 557), PackedInt32Array(562, 561, 560), PackedInt32Array(565, 564, 563), PackedInt32Array(568, 567, 566), PackedInt32Array(572, 571, 411), PackedInt32Array(411, 571, 570), PackedInt32Array(411, 570, 569), PackedInt32Array(573, 412, 574), PackedInt32Array(574, 412, 575), PackedInt32Array(575, 412, 399), PackedInt32Array(577, 576, 578), PackedInt32Array(578, 576, 579), PackedInt32Array(581, 580, 582), PackedInt32Array(582, 580, 583), PackedInt32Array(583, 580, 469), PackedInt32Array(586, 585, 584), PackedInt32Array(589, 588, 587), PackedInt32Array(592, 591, 590), PackedInt32Array(595, 594, 593), PackedInt32Array(598, 597, 596), PackedInt32Array(601, 600, 599), PackedInt32Array(605, 604, 498), PackedInt32Array(498, 604, 603), PackedInt32Array(498, 603, 602), PackedInt32Array(498, 602, 497), PackedInt32Array(545, 608, 606), PackedInt32Array(606, 608, 607), PackedInt32Array(610, 609, 499), PackedInt32Array(613, 612, 611), PackedInt32Array(615, 614, 616), PackedInt32Array(616, 614, 617), PackedInt32Array(619, 618, 620), PackedInt32Array(620, 618, 621), PackedInt32Array(623, 622, 624), PackedInt32Array(624, 622, 625), PackedInt32Array(628, 627, 626), PackedInt32Array(557, 631, 629), PackedInt32Array(629, 631, 630), PackedInt32Array(633, 632, 626), PackedInt32Array(636, 635, 634), PackedInt32Array(638, 637, 403), PackedInt32Array(403, 637, 639), PackedInt32Array(403, 639, 402), PackedInt32Array(640, 645, 641), PackedInt32Array(641, 645, 642), PackedInt32Array(642, 645, 643), PackedInt32Array(643, 645, 644), PackedInt32Array(643, 644, 646), PackedInt32Array(648, 647, 649), PackedInt32Array(649, 647, 650), PackedInt32Array(650, 647, 406), PackedInt32Array(650, 406, 407), PackedInt32Array(653, 652, 651), PackedInt32Array(656, 655, 654), PackedInt32Array(659, 658, 657), PackedInt32Array(614, 444, 617), PackedInt32Array(617, 444, 441), PackedInt32Array(617, 441, 392), PackedInt32Array(551, 662, 660), PackedInt32Array(660, 662, 661), PackedInt32Array(664, 663, 665), PackedInt32Array(665, 663, 426), PackedInt32Array(665, 426, 427), PackedInt32Array(665, 427, 666), PackedInt32Array(668, 667, 630), PackedInt32Array(671, 670, 669), PackedInt32Array(673, 672, 661), PackedInt32Array(676, 675, 674), PackedInt32Array(678, 677, 607), PackedInt32Array(681, 680, 679), PackedInt32Array(683, 682, 419), PackedInt32Array(437, 438, 625), PackedInt32Array(685, 684, 501), PackedInt32Array(627, 613, 626), PackedInt32Array(626, 613, 611), PackedInt32Array(626, 611, 686), PackedInt32Array(626, 686, 633), PackedInt32Array(687, 610, 634), PackedInt32Array(634, 610, 499), PackedInt32Array(634, 499, 688), PackedInt32Array(634, 688, 636), PackedInt32Array(496, 601, 451), PackedInt32Array(451, 601, 599), PackedInt32Array(451, 599, 689), PackedInt32Array(451, 689, 453), PackedInt32Array(690, 598, 454), PackedInt32Array(454, 598, 596), PackedInt32Array(454, 596, 691), PackedInt32Array(454, 691, 456), PackedInt32Array(692, 595, 457), PackedInt32Array(457, 595, 593), PackedInt32Array(457, 593, 693), PackedInt32Array(457, 693, 459), PackedInt32Array(694, 592, 460), PackedInt32Array(460, 592, 590), PackedInt32Array(460, 590, 695), PackedInt32Array(460, 695, 462), PackedInt32Array(696, 589, 463), PackedInt32Array(463, 589, 587), PackedInt32Array(463, 587, 697), PackedInt32Array(463, 697, 465), PackedInt32Array(698, 586, 466), PackedInt32Array(466, 586, 584), PackedInt32Array(466, 584, 699), PackedInt32Array(466, 699, 468), PackedInt32Array(531, 527, 700), PackedInt32Array(700, 527, 528), PackedInt32Array(702, 475, 701), PackedInt32Array(703, 568, 651), PackedInt32Array(651, 568, 566), PackedInt32Array(651, 566, 704), PackedInt32Array(651, 704, 653), PackedInt32Array(705, 565, 654), PackedInt32Array(654, 565, 563), PackedInt32Array(654, 563, 706), PackedInt32Array(654, 706, 656), PackedInt32Array(707, 562, 657), PackedInt32Array(657, 562, 560), PackedInt32Array(657, 560, 708), PackedInt32Array(657, 708, 659), PackedInt32Array(702, 537, 475), PackedInt32Array(475, 537, 535), PackedInt32Array(475, 535, 709), PackedInt32Array(475, 709, 477), PackedInt32Array(684, 512, 501), PackedInt32Array(501, 512, 510), PackedInt32Array(501, 510, 710), PackedInt32Array(501, 710, 503), PackedInt32Array(711, 509, 504), PackedInt32Array(504, 509, 507), PackedInt32Array(504, 507, 712), PackedInt32Array(504, 712, 506), PackedInt32Array(560, 713, 708), PackedInt32Array(708, 713, 701), PackedInt32Array(430, 431, 413), PackedInt32Array(413, 431, 714), PackedInt32Array(413, 714, 425), PackedInt32Array(413, 425, 417), PackedInt32Array(580, 579, 469), PackedInt32Array(657, 706, 707), PackedInt32Array(707, 706, 563), PackedInt32Array(631, 556, 630), PackedInt32Array(630, 556, 554), PackedInt32Array(630, 554, 715), PackedInt32Array(630, 715, 668), PackedInt32Array(716, 553, 669), PackedInt32Array(669, 553, 551), PackedInt32Array(669, 551, 660), PackedInt32Array(669, 660, 671), PackedInt32Array(662, 550, 661), PackedInt32Array(661, 550, 548), PackedInt32Array(661, 548, 717), PackedInt32Array(661, 717, 673), PackedInt32Array(718, 547, 674), PackedInt32Array(674, 547, 545), PackedInt32Array(674, 545, 606), PackedInt32Array(674, 606, 676), PackedInt32Array(608, 544, 607), PackedInt32Array(607, 544, 542), PackedInt32Array(607, 542, 719), PackedInt32Array(607, 719, 678), PackedInt32Array(720, 541, 679), PackedInt32Array(679, 541, 421), PackedInt32Array(679, 421, 418), PackedInt32Array(679, 418, 681), PackedInt32Array(434, 432, 538), PackedInt32Array(538, 432, 683), PackedInt32Array(538, 683, 419), PackedInt32Array(538, 419, 420), PackedInt32Array(454, 689, 690), PackedInt32Array(690, 689, 599), PackedInt32Array(700, 528, 478), PackedInt32Array(478, 528, 483), PackedInt32Array(482, 522, 484), PackedInt32Array(484, 522, 489), PackedInt32Array(531, 700, 721), PackedInt32Array(535, 534, 709), PackedInt32Array(722, 403, 576), PackedInt32Array(576, 403, 472), PackedInt32Array(576, 472, 469), PackedInt32Array(559, 557, 713), PackedInt32Array(713, 557, 629), PackedInt32Array(713, 629, 701), PackedInt32Array(701, 629, 702), PackedInt32Array(724, 723, 725), PackedInt32Array(725, 723, 726), PackedInt32Array(654, 704, 705), PackedInt32Array(705, 704, 566), PackedInt32Array(596, 692, 691), PackedInt32Array(691, 692, 457), PackedInt32Array(728, 727, 729), PackedInt32Array(729, 727, 730), PackedInt32Array(548, 718, 717), PackedInt32Array(717, 718, 674), PackedInt32Array(466, 697, 698), PackedInt32Array(698, 697, 587), PackedInt32Array(685, 491, 516), PackedInt32Array(516, 491, 488), PackedInt32Array(665, 666, 731), PackedInt32Array(731, 666, 732), PackedInt32Array(573, 572, 412), PackedInt32Array(412, 572, 411), PackedInt32Array(499, 500, 688), PackedInt32Array(424, 425, 733), PackedInt32Array(733, 425, 714), PackedInt32Array(735, 734, 664), PackedInt32Array(664, 734, 663), PackedInt32Array(663, 734, 714), PackedInt32Array(460, 693, 694), PackedInt32Array(694, 693, 593), PackedInt32Array(723, 736, 730), PackedInt32Array(437, 625, 622), PackedInt32Array(510, 711, 710), PackedInt32Array(710, 711, 504), PackedInt32Array(496, 451, 500), PackedInt32Array(483, 521, 482), PackedInt32Array(482, 521, 522), PackedInt32Array(579, 576, 469), PackedInt32Array(738, 737, 739), PackedInt32Array(739, 737, 740), PackedInt32Array(740, 737, 712), PackedInt32Array(740, 712, 507), PackedInt32Array(542, 720, 719), PackedInt32Array(719, 720, 679), PackedInt32Array(742, 628, 741), PackedInt32Array(744, 743, 736), PackedInt32Array(736, 743, 730), PackedInt32Array(721, 745, 531), PackedInt32Array(531, 745, 534), PackedInt32Array(534, 745, 709), PackedInt32Array(741, 746, 742), PackedInt32Array(742, 746, 747), PackedInt32Array(747, 746, 444), PackedInt32Array(747, 444, 614), PackedInt32Array(748, 391, 749), PackedInt32Array(749, 391, 392), PackedInt32Array(751, 750, 396), PackedInt32Array(396, 750, 399), PackedInt32Array(396, 399, 400), PackedInt32Array(634, 686, 687), PackedInt32Array(687, 686, 611), PackedInt32Array(741, 628, 445), PackedInt32Array(445, 628, 450), PackedInt32Array(450, 628, 626), PackedInt32Array(554, 716, 715), PackedInt32Array(715, 716, 669), PackedInt32Array(584, 583, 699), PackedInt32Array(699, 583, 469), PackedInt32Array(437, 622, 621), PackedInt32Array(398, 752, 397), PackedInt32Array(489, 515, 488), PackedInt32Array(488, 515, 516), PackedInt32Array(501, 490, 685), PackedInt32Array(685, 490, 491), PackedInt32Array(644, 645, 647), PackedInt32Array(647, 645, 406), PackedInt32Array(463, 695, 696), PackedInt32Array(696, 695, 590), PackedInt32Array(396, 393, 751), PackedInt32Array(751, 393, 403), PackedInt32Array(751, 403, 722), PackedInt32Array(441, 749, 392), PackedInt32Array(727, 754, 753), PackedInt32Array(397, 726, 753), PackedInt32Array(753, 726, 723), PackedInt32Array(753, 723, 730), PackedInt32Array(753, 730, 727), PackedInt32Array(640, 744, 645), PackedInt32Array(645, 744, 736), PackedInt32Array(397, 753, 400), PackedInt32Array(411, 569, 410), PackedInt32Array(410, 569, 703), PackedInt32Array(410, 703, 651), PackedInt32Array(437, 621, 618), PackedInt32Array(755, 437, 392), PackedInt32Array(392, 437, 618), PackedInt32Array(392, 618, 617), PackedInt32Array(756, 726, 757), PackedInt32Array(757, 726, 397), PackedInt32Array(403, 401, 472), PackedInt32Array(437, 755, 734), PackedInt32Array(734, 755, 733), PackedInt32Array(734, 733, 714), PackedInt32Array(761, 760, 758), PackedInt32Array(758, 760, 759), PackedInt32Array(765, 764, 762), PackedInt32Array(762, 764, 763), PackedInt32Array(769, 768, 766), PackedInt32Array(766, 768, 767), PackedInt32Array(773, 772, 770), PackedInt32Array(770, 772, 771), PackedInt32Array(777, 776, 774), PackedInt32Array(774, 776, 775), PackedInt32Array(781, 780, 778), PackedInt32Array(778, 780, 779)] +sample_partition_type = 2 +geometry_parsed_geometry_type = 1 +geometry_collision_mask = 2147483648 +cell_height = 1.0 +agent_height = 2.0 +agent_max_climb = 1.0 +region_min_size = 8.0 + +[sub_resource type="BoxShape3D" id="BoxShape3D_xw4dv"] +size = Vector3(134.778, 1, 155.402) + +[node name="Floor01" type="Node3D"] +script = ExtResource("1_hi8ea") + +[node name="NavigationRegion3D" type="NavigationRegion3D" parent="."] +unique_name_in_owner = true +navigation_mesh = SubResource("NavigationMesh_xw4dv") + +[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"] +unique_name_in_owner = true +script = ExtResource("2_m20ji") +room_scenes = Array[PackedScene]([ExtResource("5_em4xt")]) +corridor_room_scene = ExtResource("7_yjf3p") +dungeon_size = Vector3i(40, 1, 40) +voxel_scale = Vector3(4, 4, 4) +generate_on_ready = false +heuristic_scale = 3.0 +corridor_cost_multiplier = 0.1 +hide_debug_visuals_for_all_generated_rooms = false + +[node name="Antechamber A" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_es1bj")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 24, 0, 18) +show_debug_in_game = true +show_grid_aabb_with_doors = true + +[node name="Antechamber B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_6nrfy")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -36) +show_debug_in_game = true +show_grid_aabb_with_doors = true + +[node name="Pit Room A" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_qa3lj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 14) +show_debug_in_game = true +show_grid_aabb_with_doors = true + +[node name="Balcony Room A" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_qhbwi")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 4, 0, -62) +show_debug_in_game = true +show_grid_aabb_with_doors = true + +[node name="Statue Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_fs8rp")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 44, 0, 16) +show_debug_in_game = true +show_grid_aabb_with_doors = true + +[node name="BasinRoom" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_41yfs")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 44) +show_debug_in_game = true +show_grid_aabb_with_doors = true + +[node name="Column Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("12_13oyp")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2, 0, -4) +show_debug_in_game = true +show_grid_aabb_with_doors = true + +[node name="Floor Exit A_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_em4xt")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -34, 0, -70) + +[node name="Corridor_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 14) + +[node name="Corridor_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 10) + +[node name="Corridor_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 6) + +[node name="Corridor_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 2) + +[node name="Corridor_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -2) + +[node name="Corridor_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -6) + +[node name="Corridor_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -10) + +[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -14) + +[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -18) + +[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -22) + +[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -26) + +[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -30) + +[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -34) + +[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -34) + +[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -34) + +[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -34) + +[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -34) + +[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -34) + +[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -30) + +[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -30) + +[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -30) + +[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -26) + +[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -26) + +[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -22) + +[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -18) + +[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -18) + +[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -14) + +[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -10) + +[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -6) + +[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -22) + +[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -26) + +[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -30) + +[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -34) + +[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -38) + +[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -42) + +[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -46) + +[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -50) + +[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -50) + +[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -54) + +[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -54) + +[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -58) + +[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -58) + +[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -58) + +[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -58) + +[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -58) + +[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -58) + +[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -62) + +[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -6) + +[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -6) + +[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -6) + +[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -2) + +[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -2) + +[node name="Corridor_53" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 2) + +[node name="Corridor_54" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 2) + +[node name="Corridor_55" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 6) + +[node name="Corridor_56" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 6) + +[node name="Corridor_57" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 6) + +[node name="Corridor_58" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 6) + +[node name="Corridor_59" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 18) + +[node name="Corridor_60" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 22) + +[node name="Corridor_61" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 18) + +[node name="Corridor_62" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 22) + +[node name="Corridor_63" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 22) + +[node name="Corridor_64" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 22) + +[node name="Corridor_65" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 22) + +[node name="Corridor_66" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 22) + +[node name="Corridor_67" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 22) + +[node name="Corridor_68" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 22) + +[node name="Corridor_69" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 22) + +[node name="Corridor_70" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 22) + +[node name="Corridor_71" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 22) + +[node name="Corridor_72" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 26) + +[node name="Corridor_73" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 30) + +[node name="Corridor_74" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 34) + +[node name="Corridor_75" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 34) + +[node name="Corridor_76" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 34) + +[node name="Corridor_77" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 34) + +[node name="Corridor_78" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 34) + +[node name="Corridor_79" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 34) + +[node name="Corridor_80" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 14) + +[node name="Corridor_81" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 10) + +[node name="Corridor_82" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 10) + +[node name="Corridor_83" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 6) + +[node name="Corridor_84" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 2) + +[node name="Corridor_85" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -2) + +[node name="Corridor_86" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -6) + +[node name="Corridor_87" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -10) + +[node name="Corridor_88" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -14) + +[node name="Corridor_89" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -18) + +[node name="Corridor_90" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -22) + +[node name="Corridor_91" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -26) + +[node name="Corridor_92" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -30) + +[node name="Corridor_93" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -38) + +[node name="Corridor_94" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -42) + +[node name="Corridor_95" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -46) + +[node name="Corridor_96" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -50) + +[node name="Corridor_97" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -50) + +[node name="Corridor_98" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -54) + +[node name="Corridor_99" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -66) + +[node name="Corridor_100" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_yjf3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -70) + +[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"] + +[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"] +collision_layer = 2147483648 +collision_mask = 2147483648 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.35614, -0.797301, -11.2558) +shape = SubResource("BoxShape3D_xw4dv") +disabled = true + +[node name="EnemyDatabase" parent="." instance=ExtResource("19_o4jx7")] +unique_name_in_owner = true +EnemyList = Array[PackedScene]([ExtResource("20_qw3qq"), ExtResource("21_6u31e")]) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor02.tscn b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor02.tscn new file mode 100644 index 00000000..170a00be --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor02.tscn @@ -0,0 +1,343 @@ +[gd_scene load_steps=19 format=3 uid="uid://8oiglrv8q818"] + +[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_6q8cj"] +[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_1eowh"] +[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="5_jomgp"] +[ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="6_feo23"] +[ext_resource type="PackedScene" uid="uid://dn5546yqyntfr" path="res://src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn" id="6_pq554"] +[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="7_355o6"] +[ext_resource type="PackedScene" uid="uid://dhkbvos11tkdw" path="res://src/map/dungeon/rooms/Set A/12. Jump Scare Room.tscn" id="7_qfdg5"] +[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="8_c8i48"] +[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="8_gh666"] +[ext_resource type="PackedScene" uid="uid://c5eon2dk4ojua" path="res://src/map/dungeon/rooms/Set A/14. Ran's Room.tscn" id="9_3xp6w"] +[ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="9_gw5kq"] +[ext_resource type="PackedScene" uid="uid://crf30tibwsnri" path="res://src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn" id="10_yyu3u"] +[ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="11_6q8cj"] +[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="19_3xw4m"] +[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="20_e2hj1"] +[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="21_7a3ox"] + +[sub_resource type="NavigationMesh" id="NavigationMesh_xw4dv"] +vertices = PackedVector3Array(-31.7525, -0.20599, -26.9921, -31.7525, -0.20599, -24.9921, -31.2525, -0.20599, -24.9921, 35.4975, -0.20599, 19.0079, 35.4975, -0.20599, 17.0079, 34.9975, -0.20599, 16.7579, 38.9975, -0.20599, 11.2579, 39.4975, -0.20599, 11.0079, 39.4975, -0.20599, 9.00794, 38.9975, -0.20599, 8.75794, 38.9975, -0.20599, 7.25794, 39.4975, -0.20599, 7.00794, 39.4975, -0.20599, 5.00794, 38.9975, -0.20599, 4.75794, 38.9975, -0.20599, 3.25794, 39.4975, -0.20599, 3.00794, 39.4975, -0.20599, 1.00794, 6.99753, -0.20599, 15.2579, 7.49753, -0.20599, 15.0079, 7.49753, -0.20599, 13.0079, 6.99753, -0.20599, 12.5079, 3.24753, -0.20599, 13.0079, 4.74753, -0.20599, 15.0079, -1.00247, -0.20599, 11.2579, -0.502468, -0.20599, 11.0079, -0.502468, -0.20599, 9.00794, -1.00247, -0.20599, 8.75794, -1.00247, -0.20599, 7.25794, -0.502468, -0.20599, 7.00794, -0.502468, -0.20599, 5.00794, -1.00247, -0.20599, 3.25794, -0.502468, -0.20599, 3.00794, -0.502468, -0.20599, 1.00794, -9.00247, -0.20599, -8.74206, -8.50247, -0.20599, -8.99206, -8.50247, -0.20599, -10.9921, -9.00247, -0.20599, -11.2421, -9.00247, -0.20599, -12.7421, -8.50247, -0.20599, -12.9921, -8.50247, -0.20599, -14.9921, -9.00247, -0.20599, -15.2421, -9.00247, -0.20599, -16.7421, -8.50247, -0.20599, -16.9921, -8.50247, -0.20599, -18.9921, -9.00247, -0.20599, -19.2421, -9.00247, -0.20599, -20.7421, -8.50247, -0.20599, -20.9921, -8.50247, -0.20599, -22.9921, -9.00247, -0.20599, -23.2421, -9.00247, -0.20599, -24.7421, -8.50247, -0.20599, -24.9921, -8.50247, -0.20599, -26.9921, -29.0025, -0.20599, -28.7421, -28.5025, -0.20599, -28.9921, -28.5025, -0.20599, -30.9921, -29.0025, -0.20599, -32.7421, -28.5025, -0.20599, -32.9921, -28.5025, -0.20599, -34.9921, -7.00247, -0.20599, 7.75794, -5.00247, -0.20599, 7.75794, -4.75247, -0.20599, 7.00794, -3.00247, -0.20599, 15.7579, -1.00247, -0.20599, 15.7579, -0.752468, -0.20599, 15.0079, 0.747532, -0.20599, 15.0079, 0.997532, -0.20599, 15.7579, 2.99753, -0.20599, 15.7579, 3.24753, -0.20599, 15.0079, 4.99753, -0.20599, 19.7579, 6.99753, -0.20599, 19.7579, 7.24753, -0.20599, 19.0079, 8.74753, -0.20599, 19.0079, 8.99753, -0.20599, 19.7579, 10.9975, -0.20599, 19.7579, 11.2475, -0.20599, 19.0079, 12.7475, -0.20599, 19.0079, 12.9975, -0.20599, 19.7579, 14.9975, -0.20599, 19.7579, 15.2475, -0.20599, 19.0079, 16.7475, -0.20599, 19.0079, 16.9975, -0.20599, 19.7579, 18.9975, -0.20599, 19.7579, 19.2475, -0.20599, 19.0079, 20.7475, -0.20599, 19.0079, 20.9975, -0.20599, 19.7579, 22.9975, -0.20599, 19.7579, 23.2475, -0.20599, 19.0079, 24.7475, -0.20599, 19.0079, 24.9975, -0.20599, 19.7579, 26.9975, -0.20599, 19.7579, 27.2475, -0.20599, 19.0079, 28.7475, -0.20599, 19.0079, 28.9975, -0.20599, 19.7579, 30.9975, -0.20599, 19.7579, 32.7475, -0.20599, 19.0079, 32.9975, -0.20599, 19.7579, 34.9975, -0.20599, 19.7579, 36.7475, -0.20599, 15.0079, 36.9975, -0.20599, 15.7579, 38.9975, -0.20599, 15.7579, -31.7525, -0.20599, -34.9921, -31.7525, -0.20599, -32.9921, -31.0025, -0.20599, -32.7421, -31.7525, -0.20599, -30.9921, -31.7525, -0.20599, -28.9921, -31.0025, -0.20599, -28.7421, -31.0025, -0.20599, -24.2421, -29.0025, -0.20599, -24.2421, -27.2525, -0.20599, -24.9921, -27.0025, -0.20599, -24.2421, -25.0025, -0.20599, -24.2421, -24.7525, -0.20599, -24.9921, -23.2525, -0.20599, -24.9921, -23.0025, -0.20599, -24.2421, -21.0025, -0.20599, -24.2421, -20.7525, -0.20599, -24.9921, -19.2525, -0.20599, -24.9921, -19.0025, -0.20599, -24.2421, -17.0025, -0.20599, -24.2421, -16.7525, -0.20599, -24.9921, -15.2525, -0.20599, -24.9921, -15.0025, -0.20599, -24.2421, -13.0025, -0.20599, -24.2421, -12.7525, -0.20599, -24.9921, -11.0025, -0.20599, -0.242062, -9.00247, -0.20599, -0.242062, -8.75247, -0.20599, -0.992062, -9.00247, -0.20599, -3.24206, -11.0025, -0.20599, -4.74206, -11.5025, -0.20599, -0.992062, -23.5025, -0.20599, -26.9921, -24.7525, -0.20599, -26.9921, -31.0025, -0.20599, -31.4921, -29.0025, -0.20599, -31.2421, 12.4975, -0.20599, 17.0079, 11.2475, -0.20599, 17.0079, -7.00247, -0.20599, -0.742062, -7.50247, -0.20599, -2.99206, -28.7525, -0.20599, -24.9921, -27.5025, -0.20599, -26.9921, -28.7525, -0.20599, -26.9921, -3.25247, -0.20599, 3.00794, -3.00247, -0.20599, 4.50794, -1.00247, -0.20599, 4.75794, 31.2475, -0.20599, 19.0079, 31.2475, -0.20599, 17.0079, 30.9975, -0.20599, 16.5079, 27.2475, -0.20599, 17.0079, 8.49753, -0.20599, 17.0079, 7.24753, -0.20599, 17.0079, 36.9975, -0.20599, 7.25794, -5.00247, -0.20599, 0.757938, -7.00247, -0.20599, 0.507938, -3.50247, -0.20599, 5.00794, -3.00247, -0.20599, 7.25794, -11.0025, -0.20599, -23.4921, -11.0025, -0.20599, -24.7421, -4.75247, -0.20599, 5.00794, -3.00247, -0.20599, 8.50794, -31.0025, -0.20599, -27.4921, 32.4975, -0.20599, 17.0079, 24.4975, -0.20599, 17.0079, 23.2475, -0.20599, 17.0079, 20.4975, -0.20599, 17.0079, 19.2475, -0.20599, 17.0079, -7.50247, -0.20599, 3.00794, -7.00247, -0.20599, 3.25794, -5.00247, -0.20599, 3.25794, -7.50247, -0.20599, 0.757938, -3.50247, -0.20599, 8.75794, -3.50247, -0.20599, 11.0079, -3.00247, -0.20599, 11.2579, 4.99753, -0.20599, 16.5079, 4.49753, -0.20599, 16.7579, 4.49753, -0.20599, 19.0079, 36.4975, -0.20599, 0.757938, 36.4975, -0.20599, 3.00794, 36.9975, -0.20599, 3.25794, 38.9975, -0.20599, 0.507938, 36.9975, -0.20599, 4.50794, 36.4975, -0.20599, 4.75794, 36.4975, -0.20599, 7.00794, 32.4975, -0.20599, 12.7579, 32.4975, -0.20599, 15.0079, 32.9975, -0.20599, 15.2579, 34.9975, -0.20599, 15.2579, 35.2475, -0.20599, 13.0079, 34.9975, -0.20599, 12.5079, 26.9975, -0.20599, 16.5079, 24.7475, -0.20599, 16.5079, 22.9975, -0.20599, 16.5079, 20.7475, -0.20599, 16.5079, 18.9975, -0.20599, 16.5079, 16.7475, -0.20599, 16.5079, 16.4975, -0.20599, 17.0079, 15.2475, -0.20599, 17.0079, 14.9975, -0.20599, 16.5079, 12.7475, -0.20599, 16.5079, 10.9975, -0.20599, 16.5079, 8.74753, -0.20599, 16.5079, 2.99753, -0.20599, 12.5079, 0.747532, -0.20599, 12.5079, 0.497532, -0.20599, 13.0079, -1.00247, -0.20599, 0.507938, -3.25247, -0.20599, 0.507938, -3.50247, -0.20599, 1.00794, -5.00247, -0.20599, -3.49206, -7.25247, -0.20599, -3.49206, -4.50247, -0.20599, -2.99206, -12.7525, -0.20599, -26.9921, -13.0025, -0.20599, -27.4921, -15.2525, -0.20599, -27.4921, -15.5025, -0.20599, -26.9921, -16.7525, -0.20599, -26.9921, -17.0025, -0.20599, -27.4921, -19.2525, -0.20599, -27.4921, -19.5025, -0.20599, -26.9921, -20.7525, -0.20599, -26.9921, -21.0025, -0.20599, -27.4921, -23.2525, -0.20599, -27.4921, -25.0025, -0.20599, -27.4921, -27.2525, -0.20599, -27.4921, -11.5025, -0.20599, -23.2421, -11.5025, -0.20599, -20.9921, -11.0025, -0.20599, -20.7421, -11.0025, -0.20599, -19.4921, -11.5025, -0.20599, -19.2421, -11.5025, -0.20599, -16.9921, -11.0025, -0.20599, -16.7421, -11.0025, -0.20599, -15.4921, -11.5025, -0.20599, -15.2421, -11.5025, -0.20599, -12.9921, -11.0025, -0.20599, -12.7421, -11.0025, -0.20599, -11.4921, -11.5025, -0.20599, -11.2421, -11.5025, -0.20599, -8.99206, -11.0025, -0.20599, -8.74206, -11.0025, -0.20599, -7.49206, -11.5025, -0.20599, -7.24206, -11.5025, -0.20599, -4.99206, -7.50247, -0.20599, 7.00794, 32.9975, -0.20599, 16.5079, -3.50247, -0.20599, 15.0079, -0.752468, -0.20599, 13.0079, 36.4975, -0.20599, 11.0079, 36.9975, -0.20599, 11.2579, 39.4975, -0.20599, 15.0079, 36.9975, -0.20599, 12.5079, 36.4975, -0.20599, 13.0079, -9.00247, -0.20599, -4.74206, -8.50247, -0.20599, -4.99206, -9.00247, -0.20599, -27.4921, -29.0025, -0.20599, -35.4921, -31.2525, -0.20599, -35.4921, -3.50247, -0.20599, -32.9921, -3.00247, -0.20599, -32.4921, -1.00247, -0.20599, -32.4921, -0.502468, -0.20599, -34.9921, -1.00247, -0.20599, -35.4921, -3.50247, -0.20599, -35.2421, -0.502468, -0.20599, -32.9921, -44.5025, -0.20599, 19.0079, -44.5025, -0.20599, 17.0079, -45.0025, -0.20599, 16.7579, -43.2525, -0.20599, 15.0079, -43.0025, -0.20599, 15.7579, -41.0025, -0.20599, 15.7579, -40.7525, -0.20599, 15.0079, -39.2525, -0.20599, 15.0079, -39.0025, -0.20599, 15.7579, -37.0025, -0.20599, 15.7579, -36.7525, -0.20599, 15.0079, -35.2525, -0.20599, 15.0079, -35.0025, -0.20599, 15.7579, -33.0025, -0.20599, 15.7579, -32.7525, -0.20599, 15.0079, -31.2525, -0.20599, 15.0079, -31.0025, -0.20599, 15.7579, -29.0025, -0.20599, 15.7579, -28.7525, -0.20599, 15.0079, -27.2525, -0.20599, 15.0079, -27.0025, -0.20599, 15.7579, -25.0025, -0.20599, 15.7579, -47.0025, -0.20599, 15.2579, -44.7525, -0.20599, 15.0079, -35.5025, -0.20599, 13.0079, -36.7525, -0.20599, 13.0079, -31.5025, -0.20599, 13.0079, -32.7525, -0.20599, 13.0079, -39.5025, -0.20599, 13.0079, -40.7525, -0.20599, 13.0079, -47.5025, -0.20599, 12.7579, -47.5025, -0.20599, 15.0079, -44.7525, -0.20599, 13.0079, -45.0025, -0.20599, 12.5079, -24.5025, -0.20599, 15.0079, -24.5025, -0.20599, 13.0079, -25.0025, -0.20599, 12.5079, -27.5025, -0.20599, 13.0079, -27.2525, -0.20599, 12.5079, -28.7525, -0.20599, 13.0079, -29.0025, -0.20599, 12.5079, -31.2525, -0.20599, 12.5079, -33.0025, -0.20599, 12.5079, -35.2525, -0.20599, 12.5079, -37.0025, -0.20599, 12.5079, -39.2525, -0.20599, 12.5079, -41.0025, -0.20599, 12.5079, -43.2525, -0.20599, 12.5079, -43.5025, -0.20599, 13.0079, -47.5025, -0.20599, 19.0079, -47.0025, -0.20599, 19.7579, -45.0025, -0.20599, 19.7579, -11.0025, -0.20599, 35.5079, -9.00247, -0.20599, 35.5079, -8.75247, -0.20599, 35.0079, -5.00247, -0.20599, 35.5079, -4.50247, -0.20599, 35.0079, -4.50247, -0.20599, 33.0079, -5.00247, -0.20599, 32.5079, -7.50247, -0.20599, 33.0079, -7.25247, -0.20599, 32.5079, -11.5025, -0.20599, 35.0079, -8.75247, -0.20599, 33.0079, -9.00247, -0.20599, 32.5079, -11.5025, -0.20599, 32.7579, 32.9975, -0.20599, 35.5079, 34.9975, -0.20599, 35.5079, 35.2475, -0.20599, 35.0079, 42.9975, -0.20599, 35.2579, 43.4975, -0.20599, 35.0079, 43.4975, -0.20599, 33.0079, 40.9975, -0.20599, 36.5079, 40.4975, -0.20599, 36.7579, 40.4975, -0.20599, 39.0079, 40.9975, -0.20599, 39.5079, 42.9975, -0.20599, 39.5079, 43.4975, -0.20599, 39.0079, 42.9975, -0.20599, 32.5079, 40.7475, -0.20599, 32.5079, 40.4975, -0.20599, 33.0079, 40.7475, -0.20599, 35.0079, 39.2475, -0.20599, 33.0079, 38.9975, -0.20599, 32.5079, 36.7475, -0.20599, 32.5079, 36.4975, -0.20599, 33.0079, 32.4975, -0.20599, 35.0079, 35.2475, -0.20599, 33.0079, 34.9975, -0.20599, 32.5079, 32.4975, -0.20599, 32.7579, 38.9975, -0.20599, 35.5079, 39.2475, -0.20599, 35.0079) +polygons = [PackedInt32Array(2, 1, 0), PackedInt32Array(5, 4, 3), PackedInt32Array(7, 6, 8), PackedInt32Array(8, 6, 9), PackedInt32Array(11, 10, 12), PackedInt32Array(12, 10, 13), PackedInt32Array(16, 15, 14), PackedInt32Array(18, 17, 19), PackedInt32Array(19, 17, 20), PackedInt32Array(20, 17, 22), PackedInt32Array(20, 22, 21), PackedInt32Array(24, 23, 25), PackedInt32Array(25, 23, 26), PackedInt32Array(29, 28, 27), PackedInt32Array(32, 31, 30), PackedInt32Array(34, 33, 35), PackedInt32Array(35, 33, 36), PackedInt32Array(38, 37, 39), PackedInt32Array(39, 37, 40), PackedInt32Array(42, 41, 43), PackedInt32Array(43, 41, 44), PackedInt32Array(46, 45, 47), PackedInt32Array(47, 45, 48), PackedInt32Array(51, 50, 49), PackedInt32Array(54, 53, 52), PackedInt32Array(57, 56, 55), PackedInt32Array(58, 60, 59), PackedInt32Array(61, 63, 62), PackedInt32Array(65, 64, 66), PackedInt32Array(66, 64, 67), PackedInt32Array(68, 70, 69), PackedInt32Array(72, 71, 73), PackedInt32Array(73, 71, 74), PackedInt32Array(76, 75, 77), PackedInt32Array(77, 75, 78), PackedInt32Array(80, 79, 81), PackedInt32Array(81, 79, 82), PackedInt32Array(84, 83, 85), PackedInt32Array(85, 83, 86), PackedInt32Array(88, 87, 89), PackedInt32Array(89, 87, 90), PackedInt32Array(93, 92, 91), PackedInt32Array(96, 95, 94), PackedInt32Array(99, 98, 97), PackedInt32Array(100, 102, 101), PackedInt32Array(103, 105, 104), PackedInt32Array(107, 106, 2), PackedInt32Array(109, 108, 110), PackedInt32Array(110, 108, 111), PackedInt32Array(113, 112, 114), PackedInt32Array(114, 112, 115), PackedInt32Array(117, 116, 118), PackedInt32Array(118, 116, 119), PackedInt32Array(121, 120, 122), PackedInt32Array(122, 120, 123), PackedInt32Array(125, 124, 126), PackedInt32Array(126, 124, 129), PackedInt32Array(126, 129, 127), PackedInt32Array(127, 129, 128), PackedInt32Array(131, 130, 111), PackedInt32Array(111, 130, 112), PackedInt32Array(102, 55, 132), PackedInt32Array(132, 55, 133), PackedInt32Array(135, 134, 74), PackedInt32Array(74, 134, 75), PackedInt32Array(127, 137, 126), PackedInt32Array(126, 137, 136), PackedInt32Array(140, 139, 138), PackedInt32Array(138, 139, 108), PackedInt32Array(143, 142, 30), PackedInt32Array(30, 142, 141), PackedInt32Array(145, 144, 146), PackedInt32Array(146, 144, 93), PackedInt32Array(146, 93, 91), PackedInt32Array(146, 91, 147), PackedInt32Array(149, 148, 70), PackedInt32Array(70, 148, 71), PackedInt32Array(150, 10, 9), PackedInt32Array(152, 136, 151), PackedInt32Array(143, 29, 142), PackedInt32Array(142, 29, 153), PackedInt32Array(153, 29, 27), PackedInt32Array(153, 27, 154), PackedInt32Array(22, 67, 21), PackedInt32Array(156, 49, 155), PackedInt32Array(155, 49, 48), PackedInt32Array(157, 153, 60), PackedInt32Array(60, 153, 154), PackedInt32Array(154, 27, 158), PackedInt32Array(158, 27, 26), PackedInt32Array(133, 54, 132), PackedInt32Array(132, 54, 103), PackedInt32Array(103, 54, 105), PackedInt32Array(105, 54, 52), PackedInt32Array(0, 159, 2), PackedInt32Array(2, 159, 140), PackedInt32Array(2, 140, 138), PackedInt32Array(2, 138, 107), PackedInt32Array(145, 160, 144), PackedInt32Array(144, 160, 94), PackedInt32Array(105, 52, 159), PackedInt32Array(159, 52, 140), PackedInt32Array(91, 90, 147), PackedInt32Array(162, 161, 86), PackedInt32Array(86, 161, 87), PackedInt32Array(164, 163, 82), PackedInt32Array(82, 163, 83), PackedInt32Array(166, 165, 167), PackedInt32Array(167, 165, 168), PackedInt32Array(167, 168, 152), PackedInt32Array(167, 152, 151), PackedInt32Array(171, 170, 23), PackedInt32Array(23, 170, 169), PackedInt32Array(23, 169, 158), PackedInt32Array(23, 158, 26), PackedInt32Array(173, 172, 174), PackedInt32Array(174, 172, 68), PackedInt32Array(68, 172, 70), PackedInt32Array(70, 172, 149), PackedInt32Array(177, 176, 14), PackedInt32Array(14, 176, 175), PackedInt32Array(14, 175, 178), PackedInt32Array(14, 178, 16), PackedInt32Array(150, 181, 10), PackedInt32Array(10, 181, 180), PackedInt32Array(10, 180, 179), PackedInt32Array(10, 179, 13), PackedInt32Array(184, 183, 185), PackedInt32Array(185, 183, 186), PackedInt32Array(186, 183, 187), PackedInt32Array(187, 183, 182), PackedInt32Array(147, 90, 188), PackedInt32Array(188, 90, 189), PackedInt32Array(189, 90, 161), PackedInt32Array(161, 90, 87), PackedInt32Array(162, 86, 190), PackedInt32Array(190, 86, 191), PackedInt32Array(191, 86, 163), PackedInt32Array(163, 86, 83), PackedInt32Array(164, 82, 192), PackedInt32Array(192, 82, 193), PackedInt32Array(193, 82, 194), PackedInt32Array(194, 82, 79), PackedInt32Array(195, 78, 196), PackedInt32Array(196, 78, 197), PackedInt32Array(197, 78, 134), PackedInt32Array(134, 78, 75), PackedInt32Array(135, 74, 198), PackedInt32Array(198, 74, 199), PackedInt32Array(199, 74, 148), PackedInt32Array(148, 74, 71), PackedInt32Array(21, 67, 200), PackedInt32Array(200, 67, 201), PackedInt32Array(201, 67, 202), PackedInt32Array(202, 67, 64), PackedInt32Array(205, 204, 141), PackedInt32Array(141, 204, 203), PackedInt32Array(141, 203, 32), PackedInt32Array(141, 32, 30), PackedInt32Array(207, 206, 137), PackedInt32Array(137, 206, 208), PackedInt32Array(137, 208, 136), PackedInt32Array(136, 208, 151), PackedInt32Array(209, 123, 210), PackedInt32Array(210, 123, 211), PackedInt32Array(211, 123, 212), PackedInt32Array(212, 123, 120), PackedInt32Array(213, 119, 214), PackedInt32Array(214, 119, 215), PackedInt32Array(215, 119, 216), PackedInt32Array(216, 119, 116), PackedInt32Array(217, 115, 218), PackedInt32Array(218, 115, 219), PackedInt32Array(219, 115, 130), PackedInt32Array(130, 115, 112), PackedInt32Array(131, 111, 220), PackedInt32Array(220, 111, 221), PackedInt32Array(221, 111, 139), PackedInt32Array(139, 111, 108), PackedInt32Array(224, 223, 45), PackedInt32Array(45, 223, 222), PackedInt32Array(45, 222, 155), PackedInt32Array(45, 155, 48), PackedInt32Array(228, 227, 41), PackedInt32Array(41, 227, 226), PackedInt32Array(41, 226, 225), PackedInt32Array(41, 225, 44), PackedInt32Array(232, 231, 37), PackedInt32Array(37, 231, 230), PackedInt32Array(37, 230, 229), PackedInt32Array(37, 229, 40), PackedInt32Array(236, 235, 33), PackedInt32Array(33, 235, 234), PackedInt32Array(33, 234, 233), PackedInt32Array(33, 233, 36), PackedInt32Array(237, 239, 238), PackedInt32Array(217, 216, 115), PackedInt32Array(115, 216, 116), PackedInt32Array(58, 240, 60), PackedInt32Array(60, 240, 157), PackedInt32Array(157, 240, 167), PackedInt32Array(167, 240, 166), PackedInt32Array(184, 185, 241), PackedInt32Array(241, 185, 5), PackedInt32Array(61, 242, 63), PackedInt32Array(63, 242, 243), PackedInt32Array(243, 242, 23), PackedInt32Array(23, 242, 171), PackedInt32Array(245, 244, 6), PackedInt32Array(6, 244, 9), PackedInt32Array(9, 244, 150), PackedInt32Array(160, 241, 94), PackedInt32Array(94, 241, 5), PackedInt32Array(94, 5, 3), PackedInt32Array(94, 3, 96), PackedInt32Array(248, 247, 97), PackedInt32Array(97, 247, 99), PackedInt32Array(99, 247, 246), PackedInt32Array(246, 247, 6), PackedInt32Array(213, 212, 119), PackedInt32Array(119, 212, 120), PackedInt32Array(237, 236, 33), PackedInt32Array(22, 17, 172), PackedInt32Array(172, 17, 149), PackedInt32Array(232, 37, 233), PackedInt32Array(233, 37, 36), PackedInt32Array(248, 97, 186), PackedInt32Array(186, 97, 185), PackedInt32Array(247, 245, 6), PackedInt32Array(128, 239, 249), PackedInt32Array(249, 239, 250), PackedInt32Array(250, 239, 237), PackedInt32Array(250, 237, 33), PackedInt32Array(177, 14, 179), PackedInt32Array(179, 14, 13), PackedInt32Array(228, 41, 229), PackedInt32Array(229, 41, 40), PackedInt32Array(243, 202, 63), PackedInt32Array(63, 202, 64), PackedInt32Array(51, 49, 251), PackedInt32Array(251, 49, 156), PackedInt32Array(251, 156, 123), PackedInt32Array(251, 123, 209), PackedInt32Array(128, 249, 127), PackedInt32Array(224, 45, 225), PackedInt32Array(225, 45, 44), PackedInt32Array(205, 141, 151), PackedInt32Array(151, 141, 167), PackedInt32Array(195, 194, 78), PackedInt32Array(78, 194, 79), PackedInt32Array(252, 57, 253), PackedInt32Array(253, 57, 100), PackedInt32Array(100, 57, 102), PackedInt32Array(102, 57, 55), PackedInt32Array(255, 254, 256), PackedInt32Array(256, 254, 259), PackedInt32Array(256, 259, 258), PackedInt32Array(256, 258, 257), PackedInt32Array(257, 260, 256), PackedInt32Array(263, 262, 261), PackedInt32Array(265, 264, 266), PackedInt32Array(266, 264, 267), PackedInt32Array(269, 268, 270), PackedInt32Array(270, 268, 271), PackedInt32Array(273, 272, 274), PackedInt32Array(274, 272, 275), PackedInt32Array(277, 276, 278), PackedInt32Array(278, 276, 279), PackedInt32Array(282, 281, 280), PackedInt32Array(284, 263, 283), PackedInt32Array(286, 285, 271), PackedInt32Array(271, 285, 272), PackedInt32Array(288, 287, 275), PackedInt32Array(275, 287, 276), PackedInt32Array(290, 289, 267), PackedInt32Array(267, 289, 268), PackedInt32Array(293, 284, 294), PackedInt32Array(294, 284, 283), PackedInt32Array(294, 283, 292), PackedInt32Array(294, 292, 291), PackedInt32Array(296, 295, 297), PackedInt32Array(297, 295, 282), PackedInt32Array(297, 282, 280), PackedInt32Array(297, 280, 298), PackedInt32Array(298, 299, 297), PackedInt32Array(300, 279, 301), PackedInt32Array(301, 279, 302), PackedInt32Array(302, 279, 287), PackedInt32Array(287, 279, 276), PackedInt32Array(288, 275, 303), PackedInt32Array(303, 275, 304), PackedInt32Array(304, 275, 285), PackedInt32Array(285, 275, 272), PackedInt32Array(286, 271, 305), PackedInt32Array(305, 271, 306), PackedInt32Array(306, 271, 289), PackedInt32Array(289, 271, 268), PackedInt32Array(290, 267, 307), PackedInt32Array(307, 267, 308), PackedInt32Array(308, 267, 309), PackedInt32Array(309, 267, 264), PackedInt32Array(311, 310, 312), PackedInt32Array(312, 310, 261), PackedInt32Array(261, 310, 263), PackedInt32Array(263, 310, 283), PackedInt32Array(300, 298, 279), PackedInt32Array(279, 298, 280), PackedInt32Array(293, 309, 284), PackedInt32Array(284, 309, 264), PackedInt32Array(315, 314, 313), PackedInt32Array(317, 316, 318), PackedInt32Array(318, 316, 319), PackedInt32Array(319, 316, 320), PackedInt32Array(320, 316, 315), PackedInt32Array(320, 321, 319), PackedInt32Array(323, 315, 324), PackedInt32Array(324, 315, 313), PackedInt32Array(324, 313, 322), PackedInt32Array(324, 322, 325), PackedInt32Array(315, 323, 320), PackedInt32Array(328, 327, 326), PackedInt32Array(331, 330, 329), PackedInt32Array(332, 334, 333), PackedInt32Array(335, 334, 336), PackedInt32Array(336, 334, 337), PackedInt32Array(337, 334, 332), PackedInt32Array(337, 332, 329), PackedInt32Array(340, 339, 341), PackedInt32Array(341, 339, 338), PackedInt32Array(341, 338, 331), PackedInt32Array(341, 331, 329), PackedInt32Array(343, 342, 344), PackedInt32Array(344, 342, 345), PackedInt32Array(347, 328, 348), PackedInt32Array(348, 328, 326), PackedInt32Array(348, 326, 346), PackedInt32Array(348, 346, 349), PackedInt32Array(328, 347, 345), PackedInt32Array(351, 350, 342), PackedInt32Array(342, 350, 345), PackedInt32Array(345, 350, 328), PackedInt32Array(329, 332, 341), PackedInt32Array(342, 340, 351), PackedInt32Array(351, 340, 341)] +sample_partition_type = 2 +geometry_parsed_geometry_type = 1 +geometry_collision_mask = 2147483648 +cell_height = 1.0 +agent_height = 2.0 +agent_max_climb = 1.0 +region_min_size = 8.0 + +[sub_resource type="BoxShape3D" id="BoxShape3D_xw4dv"] +size = Vector3(191.648, 1, 155.671) + +[node name="Floor01" type="Node3D"] +script = ExtResource("1_6q8cj") + +[node name="NavigationRegion3D" type="NavigationRegion3D" parent="."] +unique_name_in_owner = true +navigation_mesh = SubResource("NavigationMesh_xw4dv") + +[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"] +unique_name_in_owner = true +script = ExtResource("2_1eowh") +room_scenes = Array[PackedScene]([ExtResource("5_jomgp")]) +corridor_room_scene = ExtResource("7_355o6") +dungeon_size = Vector3i(40, 1, 40) +voxel_scale = Vector3(4, 4, 4) +generate_on_ready = false +heuristic_scale = 3.0 +corridor_cost_multiplier = 0.1 +hide_debug_visuals_for_all_generated_rooms = false + +[node name="Item Transfer Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_pq554")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -24) + +[node name="Long Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_feo23")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16, 0, -50) + +[node name="JumpScareRoom" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_qfdg5")] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -46, 0, 4) + +[node name="Water Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_c8i48")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -36, 0, 34) + +[node name="RansRoom" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_3xp6w")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 14, 0, 36) + +[node name="Seshat\'s Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_yyu3u")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 38) + +[node name="GesthemiisRoom" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_6q8cj")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -22, 0, -6) + +[node name="Floor Exit A_0" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_jomgp")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 18, 0, 2) +script = ExtResource("8_gh666") +size_in_voxels = Vector3i(5, 1, 9) +voxel_scale = Vector3(4, 4, 4) +min_count = 1 +max_count = 1 + +[node name="Corridor_1" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -34) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_2" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -34) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_3" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -30) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_4" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -26) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_5" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -26) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_6" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_7" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_8" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_9" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_10" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_11" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_12" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_13" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 34) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_14" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 34) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_15" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 34) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_16" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 34) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_17" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 34) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_18" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 38) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_19" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_20" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_21" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_22" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_23" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_24" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_25" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 10) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_26" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 6) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_27" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 6) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_28" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 2) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_29" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -2) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_30" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -2) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_31" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -6) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_32" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -10) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_33" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_34" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_35" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -22) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_36" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -26) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_37" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -26) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_38" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -26) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_39" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -26) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_40" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 2) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_41" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_42" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_43" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_44" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_45" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 18) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_46" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_47" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 14) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_48" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 10) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_49" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 6) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_50" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_355o6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 2) +script = ExtResource("9_gw5kq") +voxel_scale = Vector3(4, 4, 4) + +[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"] +collision_layer = 2147483648 +collision_mask = 2147483648 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.35347, 1, -0.115356) +shape = SubResource("BoxShape3D_xw4dv") +disabled = true + +[node name="EnemyDatabase" parent="." instance=ExtResource("19_3xw4m")] +unique_name_in_owner = true +EnemyList = Array[PackedScene]([ExtResource("20_e2hj1"), ExtResource("21_7a3ox")]) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor03.tscn b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor03.tscn new file mode 100644 index 00000000..27716d7d --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor03.tscn @@ -0,0 +1,447 @@ +[gd_scene load_steps=19 format=3 uid="uid://bh8wgd536f317"] + +[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_5qwu0"] +[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_w3178"] +[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="3_5qwu0"] +[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="4_w3178"] +[ext_resource type="PackedScene" uid="uid://dadl2rua1ovhq" path="res://src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn" id="5_mqac6"] +[ext_resource type="PackedScene" uid="uid://dra1mqcqhw7g0" path="res://src/map/dungeon/rooms/Set B/21. Gallery Room.tscn" id="6_0v4w1"] +[ext_resource type="PackedScene" uid="uid://cq82tqhlshn1k" path="res://src/map/dungeon/rooms/Set B/22. Pit Room B.tscn" id="7_5qwu0"] +[ext_resource type="PackedScene" uid="uid://utaqo4hl68yw" path="res://src/map/dungeon/rooms/Set B/23. Antechamber 4.tscn" id="8_w3178"] +[ext_resource type="PackedScene" uid="uid://bhqmpgpegcuu5" path="res://src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn" id="9_k2pbf"] +[ext_resource type="PackedScene" uid="uid://dbfkpodwvxmfe" path="res://src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn" id="10_4abo2"] +[ext_resource type="PackedScene" uid="uid://d2k2v4bcybx3k" path="res://src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn" id="11_h4n5t"] +[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="12_6ccoi"] +[ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="13_xw5po"] +[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="14_b8w6w"] +[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="15_optp8"] +[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="16_h86t4"] + +[sub_resource type="NavigationMesh" id="NavigationMesh_xw4dv"] +sample_partition_type = 2 +geometry_parsed_geometry_type = 1 +geometry_collision_mask = 2147483648 +cell_height = 1.0 +agent_height = 2.0 +agent_max_climb = 1.0 +region_min_size = 8.0 + +[sub_resource type="BoxShape3D" id="BoxShape3D_xw4dv"] +size = Vector3(191.648, 1, 155.671) + +[node name="Floor01" type="Node3D"] +script = ExtResource("1_5qwu0") + +[node name="NavigationRegion3D" type="NavigationRegion3D" parent="."] +unique_name_in_owner = true +navigation_mesh = SubResource("NavigationMesh_xw4dv") + +[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"] +unique_name_in_owner = true +script = ExtResource("2_w3178") +room_scenes = Array[PackedScene]([ExtResource("3_5qwu0")]) +corridor_room_scene = ExtResource("4_w3178") +dungeon_size = Vector3i(40, 1, 40) +voxel_scale = Vector3(4, 4, 4) +generate_on_ready = false +heuristic_scale = 3.0 +corridor_cost_multiplier = 0.1 +show_debug_in_editor = false +hide_debug_visuals_for_all_generated_rooms = false + +[node name="Antechamber 3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_mqac6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -16) + +[node name="Gallery Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_0v4w1")] +transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, -68, 0, -8) + +[node name="Pit Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_5qwu0")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -54) + +[node name="Antechamber 4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -8) + +[node name="Balcony Room 2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_k2pbf")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 4, 0, -50) + +[node name="Pedestal Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_4abo2")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, 16) + +[node name="Item Transfer Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_h4n5t")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 12) + +[node name="Floor Exit B_0" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_5qwu0")] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -70, 0, -34) +script = ExtResource("12_6ccoi") +size_in_voxels = Vector3i(5, 1, 9) +voxel_scale = Vector3(4, 4, 4) +min_count = 1 +max_count = 3 + +[node name="Corridor_1" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_2" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_3" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_4" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_5" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_6" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_7" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_8" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_9" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_10" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -10) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_11" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -14) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_12" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -18) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_13" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -22) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_14" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -26) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_15" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -30) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_16" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_17" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_18" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_19" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_20" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_21" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -30) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_22" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -26) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_23" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -22) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_24" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -18) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_25" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -54) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_26" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -54) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_27" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -54) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_28" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -50) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_29" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -50) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_30" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -50) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_31" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -46) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_32" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -42) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_33" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -38) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_34" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_35" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_36" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_37" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_38" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -34) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_39" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_40" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_41" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_42" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_43" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_44" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_45" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_46" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_47" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_48" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_49" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_50" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_51" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_52" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_53" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_54" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_55" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_56" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_57" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_58" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_59" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 6) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_60" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_61" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_62" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_63" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_64" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_65" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_66" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_67" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_68" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -2) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_69" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -54) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_70" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -66, 0, -54) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_71" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("4_w3178")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -70, 0, -54) +script = ExtResource("13_xw5po") +voxel_scale = Vector3(4, 4, 4) + +[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"] +collision_layer = 2147483648 +collision_mask = 2147483648 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12.7119, 1, 0) +shape = SubResource("BoxShape3D_xw4dv") +disabled = true + +[node name="EnemyDatabase" parent="." instance=ExtResource("14_b8w6w")] +unique_name_in_owner = true +EnemyList = Array[PackedScene]([ExtResource("15_optp8"), ExtResource("16_h86t4")]) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor04.tscn b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor04.tscn new file mode 100644 index 00000000..d4e48d4f --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/debug_floors/DebugFloor04.tscn @@ -0,0 +1,243 @@ +[gd_scene load_steps=17 format=3 uid="uid://bpqm38kxonb35"] + +[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_hwssm"] +[ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_f10ye"] +[ext_resource type="PackedScene" uid="uid://02v033xrh6xi" path="res://src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn" id="3_5wjmx"] +[ext_resource type="PackedScene" uid="uid://dooy8nc5pgaxm" path="res://src/map/dungeon/rooms/Set B/37. Corridor 2.tscn" id="4_5dvb6"] +[ext_resource type="PackedScene" uid="uid://cypdcaqeylnwl" path="res://src/map/dungeon/rooms/Set B/27. Water Room B.tscn" id="5_gt56l"] +[ext_resource type="PackedScene" uid="uid://b8tiuu3l181ke" path="res://src/map/dungeon/rooms/Set B/28. Long Room B.tscn" id="6_rkuht"] +[ext_resource type="PackedScene" uid="uid://5cstpejxygy6" path="res://src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn" id="7_hwssm"] +[ext_resource type="PackedScene" uid="uid://b1oayub1dt5ag" path="res://src/map/dungeon/rooms/Set B/31. Dismantled Saint's Room.tscn" id="8_f10ye"] +[ext_resource type="PackedScene" uid="uid://cuau7xgx3rkxu" path="res://src/map/dungeon/rooms/Set B/32. Proscenium's Room.tscn" id="9_5wjmx"] +[ext_resource type="PackedScene" uid="uid://b6akxaacr8jd2" path="res://src/map/dungeon/rooms/Set B/33. Puer's Room.tscn" id="10_5dvb6"] +[ext_resource type="PackedScene" uid="uid://dqppy7sj8pial" path="res://src/map/dungeon/rooms/Set B/39. Gesthemii's Room 2.tscn" id="11_2me6y"] +[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="14_5jv0q"] +[ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="15_raccu"] +[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="16_5jgmg"] + +[sub_resource type="NavigationMesh" id="NavigationMesh_xw4dv"] +sample_partition_type = 2 +geometry_parsed_geometry_type = 1 +geometry_collision_mask = 2147483648 +cell_height = 1.0 +agent_height = 2.0 +agent_max_climb = 1.0 +region_min_size = 8.0 + +[sub_resource type="BoxShape3D" id="BoxShape3D_xw4dv"] +size = Vector3(191.648, 1, 155.671) + +[node name="Floor01" type="Node3D"] +script = ExtResource("1_hwssm") + +[node name="NavigationRegion3D" type="NavigationRegion3D" parent="."] +unique_name_in_owner = true +navigation_mesh = SubResource("NavigationMesh_xw4dv") + +[node name="DungeonGenerator" type="Node3D" parent="NavigationRegion3D"] +unique_name_in_owner = true +script = ExtResource("2_f10ye") +room_scenes = Array[PackedScene]([ExtResource("3_5wjmx")]) +corridor_room_scene = ExtResource("4_5dvb6") +dungeon_size = Vector3i(40, 1, 40) +voxel_scale = Vector3(4, 4, 4) +generate_on_ready = false +heuristic_scale = 3.0 +corridor_cost_multiplier = 0.1 +show_debug_in_editor = false +hide_debug_visuals_for_all_generated_rooms = false + +[node name="Water Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("5_gt56l")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 0) + +[node name="Long Room B" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_rkuht")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 42) + +[node name="Column Circle Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("7_hwssm")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 14, 0, 10) + +[node name="Dismantled Saint\'s Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_f10ye")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, 42) + +[node name="Proscenium\'s Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("9_5wjmx")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 10) + +[node name="Puer\'s Room" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("10_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -14) + +[node name="GesthemiisRoom" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("11_2me6y")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -58, 0, -58) + +[node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"] + +[node name="Floor Exit B_0" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("3_5wjmx")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -26) + +[node name="Corridor_1" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 26) + +[node name="Corridor_2" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 10) + +[node name="Corridor_3" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 14) + +[node name="Corridor_4" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 14) + +[node name="Corridor_5" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 14) + +[node name="Corridor_6" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 14) + +[node name="Corridor_7" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 18) + +[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 22) + +[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 26) + +[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 30) + +[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 34) + +[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 38) + +[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, 42) + +[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, 42) + +[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, 42) + +[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 42) + +[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26, 0, 42) + +[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 26) + +[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 22) + +[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 22) + +[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 22) + +[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 22) + +[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 18) + +[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 14) + +[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 10) + +[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 10) + +[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 10) + +[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -14) + +[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -14) + +[node name="Corridor_30" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -14) + +[node name="Corridor_31" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -14) + +[node name="Corridor_32" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -34) + +[node name="Corridor_33" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -62, 0, -38) + +[node name="Corridor_34" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -58, 0, -38) + +[node name="Corridor_35" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -54, 0, -38) + +[node name="Corridor_36" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -38) + +[node name="Corridor_37" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -46, 0, -38) + +[node name="Corridor_38" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42, 0, -38) + +[node name="Corridor_39" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38, 0, -38) + +[node name="Corridor_40" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -34, 0, -38) + +[node name="Corridor_41" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -38) + +[node name="Corridor_42" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -34) + +[node name="Corridor_43" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -30) + +[node name="Corridor_44" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -26) + +[node name="Corridor_45" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -22) + +[node name="Corridor_46" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, -18) + +[node name="Corridor_47" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 6) + +[node name="Corridor_48" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2) + +[node name="Corridor_49" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) + +[node name="Corridor_50" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -6) + +[node name="Corridor_51" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -6) + +[node name="Corridor_52" parent="NavigationRegion3D/DungeonGenerator/RoomsContainer" instance=ExtResource("4_5dvb6")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -6) + +[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D"] +collision_layer = 2147483648 +collision_mask = 2147483648 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12.7119, 1, 0) +shape = SubResource("BoxShape3D_xw4dv") +disabled = true + +[node name="EnemyDatabase" parent="." instance=ExtResource("14_5jv0q")] +unique_name_in_owner = true +EnemyList = Array[PackedScene]([ExtResource("15_raccu"), ExtResource("16_5jgmg")]) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01.tscn index 7379adc0..bb9a167a 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01.tscn @@ -1,19 +1,28 @@ -[gd_scene load_steps=13 format=3 uid="uid://bc1sp6xwe0j65"] +[gd_scene load_steps=55 format=4 uid="uid://bc1sp6xwe0j65"] [ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_0ecnn"] [ext_resource type="Script" uid="uid://b1x125h0tya2w" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_cxmwa"] [ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_gkkr3"] [ext_resource type="PackedScene" uid="uid://dn5546yqyntfr" path="res://src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn" id="6_atq1f"] +[ext_resource type="Script" uid="uid://ce73fuh74l81l" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="8_1l8yt"] [ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="8_5rblf"] [ext_resource type="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="9_atq1f"] +[ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="9_lcc45"] +[ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="10_5rblf"] +[ext_resource type="Texture2D" uid="uid://crsw35eypj6ry" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_WALL TILE 1.jpg" id="11_qx5t8"] [ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="12_aw26s"] +[ext_resource type="Texture2D" uid="uid://dpv6gobmdhgq5" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_TILE4.png" id="12_bjb1j"] [ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="12_n02rw"] +[ext_resource type="Texture2D" uid="uid://ldk1iveo0da5" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_brick_corridor_corrected.png" id="13_kl0fr"] [ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="13_ofywd"] [ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/02. michael/Michael.tscn" id="14_gkkr3"] +[ext_resource type="Texture2D" uid="uid://db1toc6kj5uq8" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_darkbrick.png" id="14_n02rw"] +[ext_resource type="Texture2D" uid="uid://3f43egfmyocx" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_concrete_0003_color_1k.png" id="15_ofywd"] +[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="16_ide0m"] +[ext_resource type="Texture2D" uid="uid://bb4i5iu6c0jrt" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_lower_corridor_lower.png" id="17_pg6e1"] +[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="18_ublib"] [sub_resource type="NavigationMesh" id="NavigationMesh_xw4dv"] -vertices = PackedVector3Array(-1.54758, -0.588592, 22.2051, -3.29758, -0.588592, 22.4551, -3.29758, -0.588592, 22.9551, 11.2024, -0.588592, 22.9551, 9.70242, -0.588592, 22.4551, -26.5476, -0.588592, 27.7051, -25.0476, -0.588592, 27.7051, -24.7976, -0.588592, 26.9551, -26.7976, -0.588592, 26.7051, 11.2024, -0.588592, 19.7051, 11.2024, -0.588592, 18.2051, 10.2024, -0.588592, 17.9551, 9.70242, -0.588592, 19.9551, 2.70242, -0.588592, 15.4551, -1.54758, -0.588592, 19.7051, 5.45242, -0.588592, 15.2051, -16.2976, -0.588592, 27.2051, -16.2976, -0.588592, 23.9551, 10.4524, -0.588592, 10.2051, 11.2024, -0.588592, 9.95507, 11.2024, -0.588592, 8.20507, 9.70242, -0.588592, 7.95507, -4.29758, -0.588592, -5.04493, -4.29758, -0.588592, -7.04493, -4.79758, -0.588592, -7.29493, -11.2976, -0.588592, -7.29493, -9.04758, -0.588592, -4.79493, 22.9524, -0.588592, 28.4551, 20.9524, -0.588592, 28.4551, 20.7024, -0.588592, 28.9551, 23.2024, -0.588592, 31.2051, 15.2024, -0.588592, 12.7051, 13.2024, -0.588592, 12.7051, 12.9524, -0.588592, 13.4551, 12.9524, -0.588592, 14.9551, -18.5476, -0.588592, 13.4551, -17.2976, -0.588592, 13.4551, -17.2976, -0.588592, 11.2051, -16.2976, -0.588592, 15.9551, -16.2976, -0.588592, 13.7051, -28.0476, -0.588592, 23.7051, -27.7976, -0.588592, 26.7051, -21.7976, -0.588592, 13.7051, -28.0476, -0.588592, 16.2051, 10.2024, -0.588592, 15.2051, -19.2976, -0.588592, 10.7051, -18.5476, -0.588592, 10.9551, -17.0476, -0.588592, 8.70507, -17.0476, -0.588592, -0.79493, -19.2976, -0.588592, -3.29493, 11.2024, -0.588592, 4.95507, -3.29758, -0.588592, 4.95507, -1.54758, -0.588592, 5.45507, 9.70242, -0.588592, 5.45507, -11.2976, -0.588592, -3.04493, -8.79758, -0.588592, -0.79493, 10.4524, -0.588592, 13.2051, 5.20242, -0.588592, 12.4551, -22.0476, -0.588592, 12.9551, -27.7976, -0.588592, 12.9551, -9.04758, -0.588592, 24.7051, -11.2976, -0.588592, 27.2051, 12.7024, -0.588592, 26.9551, 12.7024, -0.588592, 24.9551, 2.45242, -0.588592, 12.7051, -1.54758, -0.588592, 7.95507, -3.29758, -0.588592, 8.20507, -3.29758, -0.588592, 19.4551, -31.2976, -0.588592, 16.2051, -31.2976, -0.588592, 23.7051, 12.7024, -0.588592, 31.2051, 14.9524, -0.588592, 28.7051, -12.7976, -0.588592, 23.7051, -12.7976, -0.588592, 16.2051, -11.2976, -0.588592, 10.9551, -8.79758, -0.588592, 8.70507, -15.2976, 7.41141, 12.7051, -15.2976, 7.41141, 15.2051, -12.7976, 7.41141, 15.2051, -12.7976, 7.41141, 12.4551, -31.5476, 7.41141, 12.7051, -31.5476, 7.41141, 15.2051, -28.7976, 7.41141, 15.2051, -28.7976, 7.41141, 12.7051, -31.0476, -0.588592, 12.9551, -31.0476, -0.588592, 14.9551, -29.0476, -0.588592, 14.9551, -29.0476, -0.588592, 12.9551, -31.2976, 7.41141, 24.7051, -31.2976, 7.41141, 27.2051, -28.7976, 7.41141, 27.2051, -28.7976, 7.41141, 24.7051, -15.2976, 7.41141, 24.7051, -15.2976, 7.41141, 27.2051, -12.7976, 7.41141, 27.2051, -12.7976, 7.41141, 24.7051, -15.0476, -0.588592, 24.9551, -15.0476, -0.588592, 26.9551, -13.0476, -0.588592, 26.9551, -13.0476, -0.588592, 24.9551) -polygons = [PackedInt32Array(1, 0, 2), PackedInt32Array(2, 0, 4), PackedInt32Array(2, 4, 3), PackedInt32Array(6, 5, 7), PackedInt32Array(7, 5, 8), PackedInt32Array(10, 9, 11), PackedInt32Array(11, 9, 12), PackedInt32Array(14, 13, 0), PackedInt32Array(0, 13, 15), PackedInt32Array(0, 15, 12), PackedInt32Array(0, 12, 4), PackedInt32Array(17, 16, 7), PackedInt32Array(19, 18, 20), PackedInt32Array(20, 18, 21), PackedInt32Array(23, 22, 24), PackedInt32Array(24, 22, 26), PackedInt32Array(24, 26, 25), PackedInt32Array(28, 27, 29), PackedInt32Array(29, 27, 30), PackedInt32Array(33, 32, 34), PackedInt32Array(34, 32, 31), PackedInt32Array(37, 36, 35), PackedInt32Array(36, 39, 38), PackedInt32Array(8, 41, 40), PackedInt32Array(43, 42, 35), PackedInt32Array(7, 8, 40), PackedInt32Array(11, 12, 44), PackedInt32Array(44, 12, 15), PackedInt32Array(46, 45, 47), PackedInt32Array(47, 45, 48), PackedInt32Array(48, 45, 49), PackedInt32Array(53, 52, 50), PackedInt32Array(50, 52, 51), PackedInt32Array(55, 54, 26), PackedInt32Array(26, 54, 25), PackedInt32Array(35, 36, 43), PackedInt32Array(43, 36, 40), PackedInt32Array(40, 36, 7), PackedInt32Array(7, 36, 17), PackedInt32Array(18, 56, 21), PackedInt32Array(21, 56, 57), PackedInt32Array(57, 56, 15), PackedInt32Array(58, 42, 59), PackedInt32Array(59, 42, 43), PackedInt32Array(49, 54, 48), PackedInt32Array(48, 54, 55), PackedInt32Array(63, 62, 60), PackedInt32Array(60, 62, 61), PackedInt32Array(36, 38, 17), PackedInt32Array(14, 67, 13), PackedInt32Array(13, 67, 64), PackedInt32Array(64, 67, 65), PackedInt32Array(65, 67, 66), PackedInt32Array(65, 52, 64), PackedInt32Array(64, 52, 57), PackedInt32Array(57, 52, 21), PackedInt32Array(21, 52, 53), PackedInt32Array(40, 69, 43), PackedInt32Array(43, 69, 68), PackedInt32Array(33, 34, 56), PackedInt32Array(56, 34, 44), PackedInt32Array(56, 44, 15), PackedInt32Array(71, 29, 70), PackedInt32Array(70, 29, 30), PackedInt32Array(35, 46, 37), PackedInt32Array(37, 46, 47), PackedInt32Array(71, 70, 62), PackedInt32Array(72, 17, 73), PackedInt32Array(73, 17, 38), PackedInt32Array(37, 47, 74), PackedInt32Array(74, 47, 75), PackedInt32Array(75, 60, 74), PackedInt32Array(74, 60, 61), PackedInt32Array(62, 63, 71), PackedInt32Array(71, 63, 34), PackedInt32Array(71, 34, 31), PackedInt32Array(77, 76, 78), PackedInt32Array(78, 76, 79), PackedInt32Array(83, 82, 80), PackedInt32Array(80, 82, 81), PackedInt32Array(87, 86, 84), PackedInt32Array(84, 86, 85), PackedInt32Array(91, 90, 88), PackedInt32Array(88, 90, 89), PackedInt32Array(95, 94, 92), PackedInt32Array(92, 94, 93), PackedInt32Array(99, 98, 96), PackedInt32Array(96, 98, 97)] sample_partition_type = 2 geometry_parsed_geometry_type = 1 geometry_collision_mask = 2147483648 @@ -22,6 +31,578 @@ agent_height = 2.0 agent_max_climb = 1.0 region_min_size = 8.0 +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jhg27"] +resource_name = "WALL.007" +shading_mode = 0 +albedo_texture = ExtResource("11_qx5t8") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_04fvv"] +resource_name = "CEILNG.007" +cull_mode = 2 +shading_mode = 0 +albedo_texture = ExtResource("12_bjb1j") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nngve"] +resource_name = "FLOOR.007" +shading_mode = 0 +albedo_texture = ExtResource("13_kl0fr") + +[sub_resource type="ArrayMesh" id="ArrayMesh_hnpmi"] +_surfaces = [{ +"aabb": AABB(-0.498448, -0.60744, -0.502459, 1, 1.49751, 1), +"format": 34896613377, +"index_count": 642, +"index_data": PackedByteArray("GgABAAIAGgBNAAEATQADAAEATgAaAAIATgACAAQATQASAAMAGgASAE0AEgAFAAMAEQBOAAQAEQAaAE4AEQAEAAYAEgBPAAUATwAHAAUAUAARAAYAUAAGAAgAEwBQAAgAEwARAFAAEwAIAAoATwAAAAcAEgAAAE8ABwAAAFEABwBRAAkAUQALAAkAUQAUAAsAAAAUAFEAFAANAAsAEgArAAAAAAArABQAFABSAA0AUgAPAA0AUgAbAA8AFAAbAFIAGwAQAA8AGwBTABAAUwAOABAAUwAVAA4AGwAVAFMAFQAMAA4AFQBUAAwAVAAKAAwAVAATAAoAFQATAFQAMwAVABsAFQBMABMAMwAbAB8AHwAbABQAHwBVADMAMwBVABYAHwAyAFUAMgAWAFUAHwAUADEAMQAyAB8AFQAzADUAMwAWADUAFQA1ADcAFQA3AEwANQAWADkANQA5ADcANwBWAEwANwA5AFYATABWABwAOQAcAFYATAAcAEsAEwBMAEsAEwBLAEoAEwBKABEAEQBKAEkAEQBJABoASgBLAFcASwBYAFcASwAcAFgAGQBKAFcAGQBJAEoAVwBYAB0AVwAdABkAHAAdAFgASABJABkASAAaAEkAGQBZAEgAGQAdAFkASABZACEAHQAhAFkAWgAaAEgASAAhAFoAIgAaAFoAIgASABoAWgAhAC8AWgAvACIAEgAiAC0AIgBbAC0AIgAvAFsAEgAtACMAEgAjACsALQBbAC4ALQAuACMALwAuAFsAKwAjACwALAAUACsAIwBcACwAIwAuAFwAIAAUACwAMQAUACAALABcADAALAAwACAALgAwAFwAIABdADEAIAAwAF0AMQBdADIAMAAyAF0AMAA0ADIANgAwAC4AMAA2ADQAMgA0ABcAMgAXABYAFgAXADgAFgA4ADkAOAAXADoAOgA5ADgANABeABcAFwBfADoAFwBeAF8ANAAlAF4ANgAlADQAYABfAF4AYQBeACUAYABeAGEAYgBfAGAAYQBiAGAAOgBfACgAYgAoAF8AOgAoADsAOwA5ADoAPwAoAGIAOwAoAGMAPwBjACgAYgBkAD8AZABjAD8AYQBkAGIAOwBjADwAPAA5ADsAPABjAD0AZAA9AGMAPgA5ADwAPAA9AD4APgAcADkAHgAcAD4APgA9AGUAPgBlAB4AZgBlAD0AZgA9AGQAHAAeAB0AZwBlAGYAZABnAGYAHgBlACcAZwAnAGUAHgAnAEYAHQAeAEYAKgAnAGcAZABoAGcAZwBoACoAKgBpACcARgAnAGkAaABpACoAHQBGAEcARgBpAEcARwBpAEQAaABEAGkAHQBHAEUARwBEAEUAagBEAGgAHQBFABgAHQAYACEARQBEAGsAagBrAEQARQBrABgAaABsAGoAbABrAGoAaABtAGwAZABtAGgAbABuAGsAGABrAG4AQQBuAGwAbABtAEEAGABuAEMAIQAYAEMAIQBDAC8AQQAmAG4AQwBuACYAbQAmAEEAQgAvAEMAQwAmAEIAJAAvAEIAJAAuAC8AQgAmAG8AQgBvACQAbQBvACYAbQBkAGEAcABvAG0AcQAuACQANgAuAHEAJABvAEAAcABAAG8AJABAAHEAbQByAHAAcgBAAHAAbQBhAHIAcQBAAHMAcQBzADYAcgBzAEAANgBzACUAcgBhACkAKQBzAHIAYQAlACkAKQAlAHMA"), +"lods": [0.130296, PackedByteArray("GgABAAIAGgACAAQAGgASAAEAEgADAAEAEgAFAAMAEgAHAAUAEQAaAAQAEQAEAAYAEQAGAAgAEwARAAgAEwAIAAoAEwAKAAwAEgAAAAcABwAAABQABwAUAAkAFAALAAkAFAANAAsAFAAbAA0AGwAPAA0AGwAQAA8AGwAVABAAFQAOABAAFQAMAA4AFQATAAwAAAArABQAEgArAAAAEgAjACsAKwAjACwALAAUACsAEgAtACMAIAAUACwAEgAiAC0AIgASABoALQAuACMAIwAuACwAIgAvAC0ALQAvAC4AIgAaACEAIQAvACIALAAwACAALAAuADAAMQAUACAAIAAwADEAHwAUADEAHwAbABQAMQAwADIAMQAyAB8AMwAbAB8AHwAyADMAMwAVABsAMAA0ADIAFQAzADUAMAA2ADQANgAwAC4AFQA1ADcANgAlADQAMgA0ABcANAAlABcAMwAyABYAMwAWADUAMgAXABYAFgAXADgANQAWADkAFgA4ADkANQA5ADcAOAAXADoAOgA5ADgAFwAoADoAFwAlACgAOwA5ADoAOgAoADsAOwAoADwAPAA5ADsAPAAoAD0APgA5ADwAPAA9AD4APwAoACUAPwA9ACgAPwAlACkAPgAcADkAPgA9AB4AHgAcAD4AKQAlAEAANgBAACUAQQA/ACkAJABAADYANgAuACQAJAAuAC8AKQBAACYAJAAmAEAAKQAmAEEAJAAvAEIAQgAmACQAQgAvAEMAQwAmAEIAIQBDAC8AGAAmAEMAIQAYAEMAQQAmAEQAGABEACYAPwBBACoAQQBEACoAKgA9AD8AKgAnAD0AKgBEACcAHgA9ACcARQBEABgAHgAnAEYARwAnAEQARwBEAEUARgAnAEcAHQBFABgAHQAeAEYAHQBHAEUAHQBGAEcAHQAYACEAHAAeAB0ASAAdACEAIQAaAEgAGQAcAB0AGQAdAEgASAAaAEkASABJABkAEQBJABoAEQBKAEkAGQBJAEoAEwBKABEASgBLABkAEwBLAEoASwAcABkAEwBMAEsATAAcAEsAFQBMABMATAA5ABwAFQA3AEwANwA5AEwA"), 0.154644, PackedByteArray("GgABAAIAGgACAAQAGgASAAEAEgADAAEAEgAFAAMAEgAAAAUAAAAHAAUABwAAABQABwAUAAkAFAALAAkAFAANAAsAFAAbAA0AGwAPAA0AGwAQAA8AGwAVABAAFQAOABAAFQAMAA4AFQATAAwAEwAKAAwAEwAIAAoAEwARAAgAEQAGAAgAEQAEAAYAEQAaAAQAGQARABMAGQAaABEAFQAcABMAEwAcABkAFQAWABwAFgAVABsAGQAcAB0AHgAcABYAHAAeAB0AFgAbAB8AHwAbABQAHwAXABYAHgAWABcAHwAUACAAIAAXAB8AIAAUAAAAGQAdACEAIQAaABkAHQAeABgAHQAYACEAIgAaACEAIQAYACIAIgASABoAEgAjAAAAEgAiACMAAAAjACAAJAAjACIAJAAgACMAJAAiABgAIAAkABcAJAAlABcAGAAmACQAJAAmACUAGAAnACYAHgAnABgAFwAoAB4AHgAoACcAFwAlACgAKQAoACUAKQAlACYAKQAnACgAKgAmACcAKQAmACoAKgAnACkA"), 0.566052, PackedByteArray("EQABAAIAEQACAAQAEQAEAAYAEQAGAAgAEQASAAEAEgADAAEAEgAFAAMAEwARAAgAEwAIAAoAEwAKAAwAEgAAAAUAAAAHAAUABwAAABQAAAASABQABwAUAAkAFAALAAkAFAANAAsAFAAVAA0AFQAPAA0AFQAQAA8AFQAOABAAFQAMAA4AFQATAAwAFgAVABQAFQAWABMAFAAXABYAEwAWABcAFAASABcAEgAYABcAFwAYABMAEgARABgAGQARABMAGAARABkAGQATABgA"), 0.576785, PackedByteArray("AAABAAIAAAADAAEAAAACAAQAAAAFAAMAAAAEAAYAAAAHAAUAAAAGAAgABwAAAAkAAAAIAAoAAAALAAkAAAAKAAwAAAANAAsAAAAMAA4AAAAPAA0AAAAOABAAAAAQAA8AAAAAABAA")], +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 116, +"vertex_data": PackedByteArray("/38MVQAAAAC+Cf//A08AAAAA////fwAAfSX//30lAAC+Cf//+7AAAANP//++CQAAfSX//4HaAAD/f///AAAAAANP//9A9gAA+7D//74JAAD/f/////8AAIHa//99JQAA+7D//0D2AABA9v//A08AAIHa//+B2gAA//////9/AABA9v//+7AAAH0lDFWB2gAAfSUMVX0lAAD/fwxV//8AAIHaDFV9JQAAgdoMVYHaAABX3qN9E6cAADjHo31+YgAA5zKjff9/AADKNwxVNMgAAAAADFX/fwAA//8MVf9/AAD/f6N9HeYAAMo3o300yAAA/3+jfRfNAABX3gxV61gAABOnDFWnIQAA4Rmjff9/AACnIQxV61gAAOtYDFWnIQAAfmKjfcY4AACCtq0zfEkAAHxJrTN8SQAAfmKtMzjHAAA4x60zgJ0AAOmJAAAVdgAAFXYAAOmJAAD/fwxVQQwAAP9/DFXhGQAAyjcMVco3AADrWKN9pyEAAKcho33rWAAAE6ejfachAAA0yAxVyjcAAFfeo33rWAAAHeYMVf9/AACCtqN9fEkAAFfeDFUTpwAAgJ2jfcY4AAA0yAxVNMgAAAzQo33/fwAANMijfTTIAAAXzaN9/38AADjHo32AnQAAgrajfYK2AACAna0zOMcAAICdo304xwAA6YkAAOmJAAD/f60z5zIAABV2AAAVdgAAfEmjfXxJAADGOKN9fmIAAMY4rTOAnQAAxjijfYCdAAB+YqN9OMcAAHxJo32CtgAApyEMVROnAAAnLgxV19EAALRTDFXu6gAA/38MVR3mAAATpwxVV94AAL4JDFUDTwAAvgkMVfuwAAADTwxVvgkAAANPDFVA9gAA+7AMVb4JAABA9gxVA08AAED2DFX7sAAA+7AMVUD2AAAd5qN9/38AABOno31X3gAA61gMVVfeAADrWKN9V94AAKcho30TpwAA4RkMVf9/AADKN6N9yjcAAP9/o33hGQAANMijfco3AAA4x60zfmIAABfNrTP/fwAABI4AAP9/AADyjAAAonoAAPKMAABchQAAgratM4K2AABchQAA8owAAP9/rTMXzQAA/38AAASOAACiegAA8owAAAxzAABchQAAfEmtM4K2AAD6cQAA/38AAOcyrTP/fwAADHMAAKJ6AACiegAADHMAAMY4rTN+YgAAfmKtM8Y4AAD/fwAA+nEAAP9/o33nMgAAXIUAAAxzAACAna0zxjgAAA==") +}, { +"aabb": AABB(-0.984553, 0.945757, -0.95724, 2.00022, 1e-05, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAAAA//8AAP//AAD//wAAAAAAAAAAAAA=") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 2.00022, 1e-05, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "FLOOR.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAAD//wAA//8AAAAAAAD//wAA//8AAAAAAAA=") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_wxha4"] +resource_name = "18_A1_CORRIDOR_A_Cube_012" +_surfaces = [{ +"aabb": AABB(-0.498448, -0.60744, -0.502459, 1, 1.49751, 1), +"attribute_data": PackedByteArray("AAD/f/8vAAD/PwAA/x8AAP9PAAD/DwAAAAAAAP9fAAD/bwAA/38AAP+PAAD/nwAA/68AAP///3//vwAA/88AAP/fAAD/7wAA//8AAP9f/3//H/9//3//f/+f/3//3/9//79v/UjtwdIv4taxcOtw63DrjZSNlI2U/7+Ogv6a/7+NlHDrVp2o4v8//3//v/9/+47/v7aSPa2Ogv+/Vp2o4v+/A/H/vwDlb/3/v0jtPa3B0raSPa22ktaxz50p2tSl1KXUpdaxL+Iv4ijOwcQ9uz27wcT/vwPxvKpT88HSSO22mEjntpLB0qjiqOKo4qjiSO3B0gPx/79I7T2ta+b/v6jiVp3B0raS/7/7jv+/cIg9rbaSVp1WnbaSPa3Pndax1KXUpSjOz53/v/6aKdrUpT27PbvBxMHEz50ozs+dKM4ozi/i1KUp2taxL+Iozi/iKdop2i/iKM4A5f+//y//f/9P/3//D/9//2//f/+P/3//r/9//8//f//v/3//v/6aKM7Pndaxz53/v0S5ksLHuWy9x7k2xmy9L+LWsbnG/78A5f+/NsaSwpLCNsYp2ina/7+5xv+/AOVsvTbGx7mSwtSlKdpEuf+//pr/v8e5bL3PndaxtpLB0ladVp37jv+/PId8qP+/+458qDyHgtc8h6jiVp0D8f+/wvh8qML4gtfB0kjtgtfC+D2tSO09rUjtfKjC+DyHgtc="), +"format": 34896613399, +"index_count": 642, +"index_data": PackedByteArray("IgABAAIAIgBXAAEAWAAiAAIAVwADAAEAWAACAAQAVwAUAAMAEwBYAAQAFAAFAAMAEwAEAAcAFABZAAUAWQAGAAUAWQAAAAYAWgATAAcAWgAHAAgAFQBaAAgAFQAIAAkAWwAVAAkAWwAJAAoAFgBbAAoAFgAKAAsAXAAWAAsAXAALAAwAIwBcAAwAIwAMAA4AXQAjAA4AXQAOAA8AFwBdAA8AFwAPABAAXgAXABAAXgAQABEAEgBeABEAEgANAF4AXwBgAEkAXwBKAGAASQBEAF8ALgBKAF8AXwBEAC4ALgBhAEoAYgBKAGEAYwBgAEoAYwBKAGIAMwBgAGMAYgBhAGQAZABjAGIAYwBlADMAZABlAGMAMwAvAGAASQBgAC8AZQAvADMASQAvAEsAZQBmAC8ASwAvAGYAZwBmAGUAQQBJAEsASQBBAEQASwBmABoAZwBoAGYAGgBmAGgAZQBpAGcAaQBoAGcAZQBqAGkAZABqAGUAaQAyAGgAaQBqAE0ATQAyAGkAVgBoADIAGgBoAFYATQBrADIAagBrAE0AVgAyAFUAVQAyAGsAPwAaAFYAVQA7AFYAVgA7AD8AVQBrAFQAVAA7AFUAVABrAFAAagBQAGsAGQAaAD8AGQA/ADsAbABQAGoAVABQAFMAUwA7AFQAbABtAFAAUwBQAG0AagBuAGwAbgBtAGwAagBvAG4AagBkAG8AbgAxAG0AUwBtACkAKQBtADEANAAxAG4AbgBvADQANABwADEAbwBwADQAUgAxAHAAKQAxAFIAbwBOAHAAKQAoAFMAUwAoADsAJwApAFIAKAApACcAUgBwAFEAUQBwAE4AJwBSAFEAcQBOAG8AUQBOAE8AJwBRAE8AcQByAE4ATwBOAHIAbwBzAHEAcwByAHEAbwBkAHMATwByAB8AJwBPAB8AcwB0AHIAHwByAHQAcwBkAEwATAB0AHMAZAAwAEwATAAwAHQAZABhADAAHwB0AEcARwB0ADAASAAwAGEARwAwAEgASABhAC4AJAAfAEcALgBGAEgASABGAEcAJABHAEYAJwAfACQALgBEAEYAJwAkAHUARgBEAHYAIQAnAHUAOQB1ACQAIQB1ADkAOQAkAHcAdwAkAEYAOQA4ACEAdwAmADkAOQAmADgAdwBGACUAJQBGAHYAJQAmAHcAJQB2AEUARQB2AEQAJQAdACYAHQAlAEUAJgAdAHgARQBEAC0AHQBFAC0ALQBEAHkARABBAHkALQB5AEIAQgB5AEEAQwAtAEIAHQAtAEMAHQBDAB4AHQAeAHoAHgBDABwAQgAcAEMAHgAcAHsAQgBBACwALAAcAEIALABBAHwAQAAcACwALAB8AEAAQQA+AHwAQAB8AD4AQQBLAD4APgBLABoAPgAaABkAPgAZAH0AQAA+ACsAKwA+AH0AKwAcAEAAPQB9ABkAKwB9AD0AKwAqABwAPQAqACsAHAAqAH4APQAbACoAKgAbAH8APQAZADwAGwA9ADwAPAAZADsAGwA8ADoAPAA7ADoAOgA7AIAAOwAoAIAAOgCAADcAGwA6ADcANwCAACgAGwA3ABgAGwAYAIEANwAoADUAGAA3ADUANQAoAIIAKAAnAIIAgwCCACcANQCCAIMAgwAnACEANgA1AIMAIQA2AIMAGAA1ADYAIQA4ADYAGAA2ACAAIAA2ADgAGAAgAIQAIAA4ACYAIAAmAIUA"), +"lods": [0.130296, PackedByteArray("IgABAAIAIgACAAQAEwAiAAQAEwAEAAcAEwAHAAgAFQATAAgAFQAIAAkAFQAJAAoAFgAVAAoAFgAKAAsAFgALAAwAIwAWAAwAIwAMAA4AIwAOAA8AFwAjAA8AFwAPABAAFwAQABEAEgAXABEAEgANABcAIgAUAAEAFAADAAEAFAAFAAMAFAAGAAUAFAAAAAYANQAoACEANgA1ACEAGAA1ADYAGAA2ACAAGAA3ADUANwAoADUAGwA3ABgAIAA2ADgAIQA4ADYAIAA4ACYAOQA4ACEAOQAmADgAGwA6ADcAIQAnADkAIQAoACcAJAAmADkAOQAnACQAOgA7ADcANwA7ACgAGwA8ADoAPAA7ADoAGwA9ADwAPQAbACoAPQAZADwAPAAZADsAPQAqACsAKwAqABwAPQA+ABkAKwA+AD0AGQA/ADsAGQAaAD8APgAaABkAQAA+ACsAKwAcAEAAQAAcACwAQABBAD4ALABBAEAALAAcAEIAQgBBACwAQgAcAEMAHgBDABwAHQBDAB4AQwAtAEIAHQAtAEMAQgBEAEEALQBEAEIAHQBFAC0ARQBEAC0AHQAlAEUAJQAdACYARQBGAEQAJQBGAEUAJQAmACQAJABGACUAJABHAEYASABGAEcAJAAfAEcALgBGAEgALgBEAEYARwAwAEgASAAwAC4AHwAwAEcAJwAfACQASQBEAC4ASQBBAEQALgBKAEkALgAwAEoAQQBJAEsAQQBLAD4ASQBKAC8ASQAvAEsAPgBLABoASwAvABoAMwBKADAAMwAvAEoAMwAwAEwATQAvADMATABNADMAGgAvADIATQAyAC8ATAAwAE4AHwBOADAATQBMADQATABOADQATwBOAB8ANABQAE0ATQBQADIAJwBPAB8ANABOADEANAAxAFAAUQBOAE8AJwBRAE8AUQAxAE4AJwBSAFEAUgAxAFEAJwApAFIAKQAxAFIAKQBQADEAKAApACcAKQAoAFMAUwBQACkAUwAoADsAVABQAFMAUwA7AFQAVAAyAFAAVAA7AFUAVQAyAFQAVQA7AFYAVgAyAFUAVgA7AD8AGgAyAFYAPwAaAFYA"), 0.154644, PackedByteArray("IgABAAIAIgACAAQAIgAUAAEAFAADAAEAEwAiAAQAFAAFAAMAFAAAAAUAAAAGAAUAEwAEAAcAEwAHAAgAFQATAAgAFQAIAAkAFQAJAAoAFgAVAAoAFgAKAAsAFgALAAwAIwAWAAwAIwAMAA4AIwAOAA8AFwAjAA8AFwAPABAAFwAQABEAEgAXABEAEgANABcAJAAfACUAJQAmACQAJQAdACYAJAAmACEAIQAmACAAIQAgABgAIQAnACQAJwAfACQAGAAoACEAIQAoACcAGwAoABgAKAApACcAJwApAB8AGwAZACgAKQAoABkAGQAbACoAGQAqACsAKwAqABwAKQAZABoAKwAaABkAKwAcACwALAAaACsALAAcAB4AHgAtACwAHQAtAB4AHQAlAC0ALgAsAC0ALgAtACUALAAuABoALgAlAB8ALgAvABoAHwAwAC4ALgAwAC8AHwAxADAAKQAxAB8AGgAyACkAKQAyADEAGgAvADIAMwAyAC8AMwAvADAAMwAxADIANAAwADEAMwAwADQANAAxADMA"), 0.566052, PackedByteArray("EwABAAIAEwACAAQAEwAEAAcAEwAHAAgAEwAUAAEAFAADAAEAFQATAAgAFAAFAAMAFAAAAAUAAAAGAAUAFQAIAAkAFQAJAAoAFgAVAAoAFgAKAAsAFgALAAwAFgAMAA4AFgAOAA8AFwAWAA8AFwAPABAAFwAQABEAEgAXABEAEgANABcAGAAZABoAGwAZABgAGQAbABwAHAAaABkAHAAdABoAHgAdABwAHQAfABoAGgAfABgAHQAgAB8AIQAgABgAHwAgACEAIQAYAB8A"), 0.576785, PackedByteArray("AAABAAIAAAADAAEAAAACAAQAAAAFAAMAAAAGAAUAAAAEAAcAAAAHAAgAAAAIAAkAAAAJAAoAAAAKAAsAAAALAAwADQAAAAwADQAMAA4ADQAOAA8ADQAPABAADQAQABEAEgANABEA")], +"material": SubResource("StandardMaterial3D_jhg27"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 134, +"vertex_data": PackedByteArray("/38MVQAAFv6+Cf//A0//zwAA////f/+/fSX//30l/9++Cf//+7D/rwNP//++Cf7v/3///wAA//99Jf//gdr/nwNP//9A9v+P/3//////AID7sP//QPb/j4Ha//+B2v+fQPb///uw/6//fwxVAAAW/v//////f/+/QPb//wNP/8+B2v//fSX/3/uw//++Cf7v/3///wAA//99JQxVgdocq30lDFV9JTLi/38MVf//rZ2B2gxVgdocq4HaDFV9JTLi/38MVf//UWJX3qN9E6e0KzjHo31+YrQrgdoMVYHaSlWB2gxVfSUwI30lDFV9JTAj/38MVQAArR3nMqN9/38oOX0lDFWB2kpVyjcMVTTIMCMAAAxV/38uxf//DFX/fy7F4Rmjff9/KDmnIQxV61hKSAAADFX/fyg5yjejfTTIMCP/f6N9HeatHf9/o30XzVFi//8MVf9/KDlX3gxV61hKSBOnDFWnIale61gMVachqV5+YqN9xjjxHoK2rTN8SakZfEmtM3xJqRl+Yq0zOMcIZDjHrTOAnSlA6YkAABV2SzEVdgAA6YnfS/9/DFUd5q0dtFMMVe7q/z8TpwxVV97xHicuDFXX0f8/pyEMVROntCs0yAxVNMgwIzTIo300yDAjV94MVROntCsd5gxV/38oOVfeo33rWEpIDNCjff9//z80yAxVyjdKVROno32nIale/38MVeEZNV3/fwxVQQz/P+tYo32nIaleyjcMVco3SlWnIaN961hKSMY4o31+YtIvfEmjfXxJMCOAnaN9xjjxHv9/rTPnMmQNgrajfXxJMCMVdgAAFXZLMemJAADpid9LxjitM4CdKUDGOKN9gJ1KSICdrTM4xwhkfEmjfYK2SlV+YqN9OMepXoCdo304x6legrajfYK2SlU4x6N9gJ1KSBfNo33/f/g6vgkMVQNPhdO+CQxV+7B9twNPDFW+CQ7xA08MVUD2i6H7sAxVQPaLoUD2DFX7sH23QPYMVQNPhdP7sAxVvgkO8f9/o33nMq0dgJ2tM8Y43xB+Yq0zxjjfEP9/AAD6cQYsXIUAAAxzcS2iegAADHNxLfKMAACiet42OMetM35iFSUEjgAA/3+ZPRfNrTP/f+wx8owAAFyF20RchQAA8oySUYK2rTOCtpdQ/38AAASO+FP/f60zF82bcqJ6AADyjJJRDHMAAFyF20R8Sa0zgraXUPpxAAD/f5k95zKtM/9/7DEMcwAAonreNsY4rTN+YhUlpyGjfROntCvKN6N9yjdKVeEZDFX/fyg5vgkMVQNPtCv/f6N94RlRYgNPDFW+CfEe+7AMVb4J8R40yKN9yjdKVR3mo33/fyg5QPYMVQNPtCtA9gxV+7BKSBOno31X3vEe+7AMVUD2qV7rWKN9V97xHutYDFVX3g8kA08MVUD2qV6+CQxV+7BKSHJYKvr/f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAAqeown/38AAP9/AAD/fwAA/38AAP9///+cN8/MKVPd8gAA/3/PTGNI3XLWLAAA/38LM0aURxT0TEYoQERnDO9ZDyZmjAAA/398PD2evztGqGcM71mfSE/kT2RfNz4egkOyJss/fDw9nmcM71kAAP9/AAD/fz4egkMzQLGmDSupnqke8lTBFUKGNSDSSC03NaAcUvufRyU4LlgSdGE9J6uPAAD/fwAA/3/BFUKGAAD/f0cU9EwPJmaMDyZmjAszRpR8PD2eM0CxpgAA/3+/O0aoDSupngAA/38AAP9/qR7yVEYoQESyJss/Fy+4kw8mZoxCBj5qAAD/f2cM71mLHleSrA/BWMdRRqUzQLGm+x/iLb87RqgNK6meqR7yVEYoQESyJss/ahsrST1OEOyUQZTa2FdV+dEmm7WcNS5ZlFprPhFswTFWeSYoAAD/f/MVClz0I/KVAAD/f/wLnW1hEvuL+RSoWXIkBD1XFVFVrCWmNKgTmlRhCQllxiMNKgAA/38AAP9/9RpgiWUrp5PyVcWjripWlVhLq6VXJviU+kJxpEcU9ExGKEBEPh6CQwszRpQAAP9/wRVChkIGPmq/O0aofDw9nkcU9EyyJss/wRVChqke8lRCBj5qlQanaw0rqZ4zQLGm") +}, { +"aabb": AABB(-0.984553, 0.945757, -0.95724, 2.00022, 1e-05, 2.00004), +"attribute_data": PackedByteArray("AAD/////AAAAAAAA/////w=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_04fvv"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAAAA//8AAP//AAD//wAAAAAAAAAAAAD/f/8//3//P/9//z//f/8/") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 2.00022, 1e-05, 2.00004), +"attribute_data": PackedByteArray("//8AAAAA////////AAAAAA=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_nngve"), +"name": "FLOOR.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAAD//wAA//8AAAAAAAD//wAA//8AAAAAAAD/f/+//3//v/9//7//f/+/") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_hnpmi") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lsgue"] +resource_name = "Material.014" +cull_mode = 2 +shading_mode = 0 +albedo_texture = ExtResource("14_n02rw") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_btu5w"] +resource_name = "Material.015" +cull_mode = 2 +shading_mode = 0 +albedo_texture = ExtResource("15_ofywd") + +[sub_resource type="ArrayMesh" id="ArrayMesh_mfebi"] +_surfaces = [{ +"aabb": AABB(-0.984553, -35.921, -0.95724, 0.260146, 36.7557, 0.260051), +"format": 34896613377, +"index_count": 456, +"index_data": PackedByteArray("AAABAAIAAABYAAEAWAAGAAEAAwBYAAAAWAAFAAYAAwAEAFgABAAFAFgABAAHAAUACABZAFoACAAJAFkACQAKAFkACQALAAoAWQAKAAwAWQAMAFsAWgBZAFsAWwAMAA0ACABaAFwACABcABYAFgBcABUAFgAVABcAXAAUABUAXABdABQAWgBdAFwAXQASABQAWgBbAF4AWgBeAF0AXQBfABIAXgBfAF0AXwATABIAXwARABMAYAARAF8AXgBgAF8AYAAQABEAYAAPABAAXgBhAGAAYABhAA8AXgBbAGEAYQAOAA8AWwANAGEAYQANAA4AGAAZABoAGAAbABkAGQAbAB0AGgAZAGIAGgBiABwAJQAcAGIAGQAdAB8AJQBiACQAJgAlACQAJgAkACcAHQAgAB8AHQAhACAAYwAZAB8AYwAfACAAGQBkAGIAGQBjAGQAJABiAGQAJwAkACwAJwAsAC0ALQAsAC4AJAAuACwALQAuAC8AJABlAC4AJABkAGUAZQAwAC4AZQBkAGYAYwBmAGQAZQBnADAAZQBmAGcAZwAyADAAMwAwADIAMwAyADQAMQA0ADIAZwAxADIAMQA1ADQAZwAeADEAZwBmAB4AaAAeAGYAYwBoAGYAaABjACAAaAAiAB4AaAAgACMAIgBoACMAIgAjACgAKQAoACMAKgAiACgAKQArACgAKgAoACsANgBpADgANgA3AGkAOABpAGoAOABqAD4APwA+AGoANwBrAGkANwA5AGsAOQA7AGsAOQA6ADsAawA7ADwAaQBrAD0AawA8AD0AaQA9AGoAPwBqAGwAbABqAD0AQAA/AGwAQABsAEEAbAA9AG0AbQA9ADwAQQBsAG0AbQA8AEIAQQBtAEMAQwBtAEIAQwBCAEQARQBuAEcARQBGAG4ARwBuAEgARwBIAEkASgBJAEgARgBvAG4ARgBOAG8AbgBNAEgAbgBvAE0ASgBIAHAAcABIAE0ATABKAHAATABwAEsASwBwAHEAcABNAHEASwBxAE8AbwByAE0AcQBNAHIATgBzAG8AbwBzAHIATgBQAHMATwBxAHQAcQByAHQATwB0AFEAcwBSAHIAdAByAFIAUAB1AHMAcwB1AFIAUABTAHUAdABSAHYAUQB0AHYAdQB2AFIAUQB2AFQAUwB3AHUAdQB3AHYAdwBUAHYAUwBWAHcAdwBVAFQAVgBVAHcAVgBXAFUA"), +"lods": [0.0638598, PackedByteArray("AAABAAIAAwABAAAAAwAEAAEABAAFAAEAAQAFAAYABAAHAAUACAAJAAoACQALAAoACgAMAAgACAAMAA0ACAANAA4ACAAOAA8ACAAPABAACAAQABEACAARABIAEgARABMACAASABQACAAUABUACAAVABYAFgAVABcAGAAZABoAGAAbABkAGgAZABwAGQAbAB0AGQAeABwAGQAdAB8AHQAgAB8AGQAfACAAHQAhACAAIgAZACAAGQAiAB4AIgAgACMAJAAcAB4AJQAcACQAJgAlACQAJgAkACcAIgAjACgAKQAoACMAKgAiACgAKQArACgAKgAoACsAJwAkACwAJwAsAC0ALQAsAC4AJAAuACwALQAuAC8AJAAwAC4AJAAxADAAJAAeADEAMQAyADAAMwAwADIAMwAyADQAMQA0ADIAMQA1ADQANgA3ADgANwA5ADgAOQA6ADsAOQA7ADwAOAA5AD0AOQA8AD0AOAA9AD4APwA+AD0AQAA/AD0AQAA9AEEAPQA8AEIAQQA9AEMAQwA9AEIAQwBCAEQARQBGAEcARwBGAEgARwBIAEkASgBJAEgASgBIAEsATABKAEsARgBNAEgASwBIAE0ARgBOAE0ASwBNAE8ATgBQAE0ATwBNAFEAUABSAE0AUQBNAFIAUABTAFIAUQBSAFQAUwBUAFIAUwBVAFQAVgBVAFMAVgBXAFUA")], +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 120, +"vertex_data": PackedByteArray("//8AAGxVAAB8VQAA//8AAP//AAD//wAA//8AAAAAAAB8VQAAAAAAAAAAAABsVQAAAAAAAP//AAAAAAAAAAAAACf+iQ4n/gAA3lSJDif+AAAAAC0RAvgAAAAAiQ4n/gAAAABpKV+iAAAAAGksX6IAAAAAVDFfogAAUTZUMV+iAAB+olQxX6IAAH6iVDE2NgAAfqJpLAAAAAB+olQxAAAAAH6iaSkAAAAABvgtEQAAAAAn/okOzlQAACf+iQ4AAAAAAABYQx+kAAAhL7ZHxpAAAOY2WEMfpAAAAAC2R8aQAAA9pFhDH6QAAAAANkjebgAA6pcJxrSXAADTIzZI3m4AAC0sLEsciAAAAAAsSxyIAADKMgnGtJcAAC0s178ciAAAko+2R1kwAAA9pFhDzDYAAD2kWEMAAAAAko+2RwAAAAANIRvEe2YAAAAA178ciAAAAAAJxrSXAAAAABvEe2YAAKltNkgLJQAAqW02SAAAAAC3hixLdS0AALeGLEsAAAAAt4bXv3UtAADqlwnGqDIAAFZlG8RAIgAAt4bXvwAAAABWZRvEAAAAAOqXCcYAAAAAAACc0T2SAAAAAAHSPZIAAPswnNE9kgAAAABI1D2SAAAAAI/Wx8oAALBDj9bHygAAncqP1sfKAAB9kkjUPZIAAH2SnNE9kgAAfZKc0dYwAAB9kpzRAAAAAH2SAdIAAAAAncqP1q5DAAB9kkjUAAAAAJ3Kj9YAAAAAAAD46sfKAAAAAIXse68AALBD+OrHygAAhK+F7HuvAACdyvjqx8oAAJ3K+OquQwAAhK+F7AAAAACdyvjqAAAAAGXxP+7a8QAAAAA/7trxAABl8T/uAAAAAAAAQvjd/QAAUv1C+AAAAAAi8f//pfEAAAAA//+l8QAAIvH//wAAAACHUP//AAAAAAAA//+jUAAAAAD//wAAAAB8VQAAbFUAANNSLREC+AAABvgtEQL4AABRNmkpX6IAAAb4LRHCUgAAfqJpKTY2AAB+omkpX6IAAH6iaSw2NgAAfqJpLF+iAABRNmksX6IAAJKPtkfGkAAACjrnS76xAABMsOdLvrEAAEyw50tWOwAATLBpv76xAABMsGm/VjsAAAo6ab++sQAA+zAB0j2SAAB9kgHSPZIAAPswSNQ9kgAAfZIB0tYwAAB9kkjU1jAAAKg6hex7rwAAnlA/7trxAACEr4XslToAAGXxP+61UAAAUv1C+N39AACXVEL43f0AAFL9Qvi2VAAAh1D//6XxAAAi8f//o1AAAIdQ//+jUAAA") +}, { +"aabb": AABB(-0.984553, -25.1276, -0.95724, 0.1369, 16.7513, 0.138266), +"format": 34896613377, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("AAAAAP7/AADzU/////8AAPNTAAD+/wAAAAD/////AAD//wAAAAAAAP////+AVQAA/////wAAAAD//wAAgFUAAA==") +}, { +"aabb": AABB(-0.984553, -35.921, -0.95724, 0.260146, 33.7366, 0.260051), +"format": 34896613377, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAgABAAMAAgADAAQAAAAFAAEAAAAGAAUAAAAHAAYABwAIAAYABwAJAAgACgALAAwACgANAAsADAALAA4ADAAOAA8AEAAPAA4ADQARAAsADQASABEAEgATABEAEgAUABMAEQATABUACwARABYAEQAVABYACwAWAA4AEAAOABcAFwAOABYAGAAQABcAGAAXABkAFwAWABoAGgAWABUAGQAXABoAGgAVABsAGQAaABwAHAAaABsAHAAbAB0AHgAfACAAHgAhAB8AIAAfACIAIAAiACMAJAAjACIAIQAlAB8AIQAmACUAJgAnACUAJgAoACcAJQAnACkAHwAlACoAJQApACoAHwAqACIAJAAiACsAKwAiACoALAAkACsALAArAC0AKwAqAC4ALgAqACkALQArAC4ALgApAC8ALQAuADAAMAAuAC8AMAAvADEAMgAzADQAMgA1ADMANAAzADYANAA2ADcAOAA3ADYAOAA2ADkAOgA4ADkAOgA5ADsA"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 60, +"vertex_data": PackedByteArray("//8AAP//AAAn/tYPzlQAAP//AABsVQAAJ/7WDwAAAAD//wAAAAAAACf+1g8n/gAA3lTWDyf+AAB8VQAA//8AAAAA1g8n/gAAAAAAAP//AAAAAL41X6IAAGlDnTmqyQAAUTa+NV+iAAAAAJ05qskAAMXJnTmqyQAAfqK+NV+iAAB+or41NjYAAGlD1UWqyQAAAADVRarJAADmNl9JH6QAAAAAX0kfpAAAPaRfSR+kAADFydVFqskAAMXJnTlPQwAAfqK+NQAAAADFyZ05AAAAAMXJ1UVPQwAAPaRfScw2AADFydVFAAAAAD2kX0kAAAAAAADC17SXAAB7NrbY3aIAAMoywte0lwAAAAC22N2iAAD+orbY3aIAAOqXwte0lwAA6pfC16gyAAB7Ngfj3aIAAAAAB+PdogAA+zBe5D2SAAAAAF7kPZIAAH2SXuQ9kgAA/qIH492iAAD+orbYYDYAAOqXwtcAAAAA/qK22AAAAAD+ogfjYDYAAH2SXuTWMAAA/qIH4wAAAAB9kl7kAAAAAAAAwunHygAAsEP//8fKAACwQ8Lpx8oAAAAA///HygAAncr//8fKAACdysLpx8oAAJ3KwumuQwAAncr//65DAACdysLpAAAAAJ3K//8AAAAA") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_vt22i"] +resource_name = "18_A1_CORRIDOR_A_Cube_005" +_surfaces = [{ +"aabb": AABB(-0.984553, -35.921, -0.95724, 0.260146, 36.7557, 0.260051), +"attribute_data": PackedByteArray("//+M6HbQ7dL//+3S//9c83bQXPOyuIzosrjt0rK4XPN7////StD//7K4Bv2yuP//sriQ57K4HOSyuHLexsdy3u7lct6yuLDJxcWnxO/HsMlUuKfEa+awyfvijFLKxoxSxcUG4VS4U+WewlPlVLgG4VS4FMTyxKvAnsIUxFS4q8BUuB/i2MFj5vLEH+JUuGPmsrgl4NjBY+ZUuGPmysYl4LK4NUqyuOxJScY1SrK4SEh44UhIeOE1SrK41+CyuKzZgMus2R3xrNl44dfgsris2bK4It2Ay6zZj+ki3R3xrNmyuCjpFc9c87K4v9SyuFzz2vtc89r7v9Qd8VzzHfHM6o/pXPOP6SLdHfGs2XjhXPMd8czqHfFc83jh1+Ad8azZsrjsSWnhSEiyuEhIsrg1SkTGNUpp4TVK++L07OHUXPPh1Anv++Jc8y/eXPPh1Anv4dRc8y/ene2yuBTEU8WrwLK4q8D7whTEp+Bc8zPXru4z11zzp+A/7bK4sMkhxqfEsrinxO3HsMlk5rDJ7uKMUsbGjFKyuBzkxMdy3rK4ct57////6OVy3rK4kOeyuAb9StD//7K4//8A4afEjdcUxJbeq8Du4oxSlt4CVzfV71On4KfEL94CVy/eq8Az1xTE++KMUuHU71OyuCLd7fu41I/pIt2yuLjUj+lc8+37uNTt+1zzj+ki3bK4kzUO/JM1srhdLv/7yiiyuMoosriTNbK4XS7t+5M12vvKKLK4yih20IzouM8G/cb9Bv24zwb9sriQ58bHkOeyuAb9xv0G/e7lkOfGx5Dnxscc5O7lkOfu5RzkxcWnxKfgp8RJxuxJeOHsSUnGSEhJxtfg/Mgi3RvPuNT8yCLdNtBdLhvPkzVA/10usrhdLhXPyig20F0uQP9dLhXPKOkVz7/U2vso6SHPyihD0F0uZ/9dLkPQXS6yuF0uJs+TNWf/XS7t+yXpj+nz64/p8+t44TDtRMZISETG7Elp4exJIcanxADhp8TExxzkxMeQ57K4kOfo5ZDn6OUc5LjPBv3Ex5Dnxf0G/ejlkOeyuAb9uM8G/cX9Bv0w6tS/McnUvwDhp8TH6dS/p+CnxM/I1L/PyNS/x+lSV8fp1L/PyFJXMcnUvzDqUlcxyVJXMOrUvzDq1L+W3qvAMOpSVzDq1L/PyFJXx+lSV5beAlcw6lJXx+nUvy/eAlcv3qvAx+lSV8fp1L8xyVJXMOpSV8fpUlc="), +"format": 34896613399, +"index_count": 456, +"index_data": PackedByteArray("AAABAAIAAACMAAEAjAAGAAEAAwCMAAAAjAAFAAYAAwAEAIwABAAFAIwABAAHAAUACACNAI4ACAAJAI0ACQAKAI0ACQALAAoAjwCQAJEAjwCSAJAAkwCPAJEAkwCRAJQAlQANAJYAlQAMAA0AlgANAA4AlwCVAJYAlgAOAA8AlwCWAJgAmACWAA8AmAAPABAAEQCZABMAEQAUAJkAEwCZAJoAEwCaABUAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKACbACoAKAApAJsAKgCbAJwAKgCcAC0AmwAsAJwAmwCdACwAKQCdAJsAKQArAJ0ALgAwAJ4ALgAvADAAngAwADEAngAxADIAMwCfADUAMwA0AJ8ANQCfADYANQA2ADcAegCgAKEAegB9AKAAoQCgAHsAoQB7AHwAhwCiAKMAhwCIAKIAowCiAKQAowCkAIkApQCmAKcApQCLAKYApwCmAIoApwCKAKgAOgCpAKoAOgA4AKkAqgCpAKsAqgCrAD0AqQA8AKsAqQA5ADwAOAA5AKkAOAA7ADkAhACsAIYAhACtAKwArQCFAKwArQCuAIUAggCvALAAggCxAK8AsQCyAK8AsQCDALIAfgCzAIAAfgC0ALMAtAB/ALMAtACBAH8APgC1AEAAPgA/ALUAPwBBALUAPwBCAEEAQwBEAEUAQwC2AEQAtgBHAEQAtgBGAEcASAC3AEoASAC4ALcAuABJALcASwC4AEgAuAC5AEkASwBMALgATAC5ALgATABNALkATgBPAFAATgBRAE8AUgBTAFQAUgBVAFMAVgBXAFgAVgBZAFcAWgBbAFwAWgBdAFsAXgC6AGAAXgBhALoAYQC7ALoAYQBiALsAvABnAGUAvABmAGcAvQC8AGUAvQBlAL4AvwC8AL0AvwDAALwAwABmALwAwABpAGYAwQBqAGsAwQDCAGoAwwDCAMEAwwDEAMIAbADFAG0AbADGAMUAaADGAGwAaADHAMYAXwDIAMkAXwDKAMgAEgDLAMwAEgDNAMsAzgDPANAAzgDRAM8A0gDTANQA0gDVANMA1gBvANcA1gBuAG8A2ABwAHIA2ADZAHAA2gAWANsA2gAXABYAcQDcAHMAcQDdANwA3gDfAOAA3gDhAN8AdAB2AHcAdADiAHYA4wBjAGQA4wDkAGMA5QB5AHUA5QB4AHkA"), +"lods": [0.0638598, PackedByteArray("AAABAAIAAwABAAAAAwAEAAEABAAFAAEAAQAFAAYABAAHAAUACAAJAAoACQALAAoACgAMAAgACAAMAA0ACAANAA4ACAAOAA8ACAAPABAAEQASABMAEQAUABIAEwASABUAEgAWABUAEgAXABYAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKAApACoAKQArACoAKgArACwAKgAsAC0ALgAvADAALgAwADEALgAxADIAMwA0ADUANQA0ADYANQA2ADcAOAA5ADoAOAA7ADkAOgA5ADwAOgA8AD0APgA/AEAAPwBBAEAAPwBCAEEAQwBEAEUAQwBGAEQARgBHAEQASABJAEoASwBJAEgASwBMAEkATABNAEkATgBPAFAATgBRAE8AUgBTAFQAUgBVAFMAVgBXAFgAVgBZAFcAWgBbAFwAWgBdAFsAXgBfAGAAXgBhAF8AYQBiAF8AXwBiAGMAXwBjAGQAZQBmAGcAaABmAGUAaABpAGYAaABlAGoAaABqAGsAaABrAGwAbABrAG0AbgBvAHAAcQBuAHAAcQBwAHIAcQByAHMAdAB1AHYAdAB2AHcAdAB4AHUAeAB5AHUAegB7AHwAegB9AHsAfgB/AIAAfgCBAH8AggCDAIQAhACDAIUAhACFAIYAhwCIAIkAiACKAIkAiACLAIoA")], +"material": SubResource("StandardMaterial3D_lsgue"), +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(2.22908, 4.9004, 0, 0), +"vertex_count": 230, +"vertex_data": PackedByteArray("//8AAGxV/798VQAA////v///AAD///+///8AAAAA/798VQAAAAD/vwAAAABsVf+/AAAAAP///78AAAAAAAD/vyf+iQ4n/quA3lSJDif+q4AAAC0RAvirgAAAiQ4n/quAAABpKV+iAIAAAGksX6IAgAAAVDFfogCAUTZUMV+iAIB+olQxX6IAgAAAWEMfpEaBIS+2R8aQQ4LmNlhDH6RGgQAAtkfGkEaBPaRYQx+kRoHqlwnGtJchgcoyCca0lyGBIS+2R8aQs20AADZI3m6zbdMjNkjebrNtAAC2R8aQs20AADZI3m5zgi0sLEsciHOC0yM2SN5uc4IAACxLHIhzggAA178ciLp9DSEbxHtmun0tLNe/HIi6fQAAG8R7Zrp9AAAJxrSXRocNIRvEe2ZGhwAAG8R7ZkaHyjIJxrSXRocAAJzRPZIAgAAAAdI9kgCA+zCc0T2SAIAAAEjUPZIAgH2SSNQ9kgCAfZKc0T2SAIAAAEjUPZIUhwAAj9bHyhSHsEOP1sfKFIedyo/Wx8oUh32SSNQ9khSHAAD46sfK9XoAAIXse6/1erBD+OrHyvV6hK+F7Huv9Xqdyvjqx8r1egAA//+jUP8/h1D//wAA/z8AAP//pfH/PwAA//8AAP8/IvH//wAA/z8i8f//pfH/P53K+OoAAH4tncr46q5Dfi2Er4XsAAB+LYSvhex7r34tncr46sfKfi19kkjUAABj0Z3Kj9auQ2TRncqP1gAAZNF9kkjUPZJk0Z3Kj9bHymTRfZIB0gAAAAB9kkjUPZIAAH2SSNQAAAAAfZKc0QAAAAB9kpzR1jAAAH2SnNE9kgAA6pcJxqgyJ9FWZRvEAAAm0VZlG8RAIiXR6pcJxgAAJ9G3hte/AAD0K1ZlG8RAIvQrVmUbxAAA9Cu3hte/dS30K6ltNkgAALkBt4YsS3UtuQG3hixLAAC5AaltNkgLJbkBko+2RwAAUjSpbTZICyVRNKltNkgAAFA0ko+2R1kwUjQ9pFhDAAD3AJKPtkdZMJcBko+2RwAA9wA9pFhDzDb3AD2kWEMfpPcA6pcJxrSXvwDqlwnGqDK/AH6iaSwAAAAAfqJUMTY2AAB+olQxAAAAACf+iQ4n/ngAfqJUMV+iAAB+omkpAAC4AAb4LREAALgAJ/6JDs5UeAAn/okOAAB4ACEvtkfGkOOy0yM2SN5u47ItLCxLHIhFt8oyCca0l3myLSzXvxyI+LMNIRvEe2Z5spKPtkdZMAAAt4bXv3UtBQC3hixLdS0AAKltNkgLJQAA6pcJxqgyBQBWZRvEQCIFAAAAhex7r9GKZfE/7trx0YqEr4Xse6/RigAAP+7a8dGKhK+F7AAAa89l8T/u2vFrz2XxP+4AAGvPhK+F7Huva89l8T/uAAA9AGXxP+7a8T0AUv1C+AAAUgAi8f//pfFRACLx//8AAFEAAAA/7trxWIAAAEL43f1YgGXxP+7a8ViAIvH//6XxdIAAAP//pfF0gHxVAABsVf+/01ItEQL4q4AG+C0RAvirgNNSLREC+ASBAABpKV+iBIFRNmkpX6IEgQAALREC+ASBBvgtEQL4BIF+omkpX6IEgVE2aSlfogCAUTZpLF+iAIB+omkpX6IAgH6iaSxfogCAIS+2R8aQRoGSj7ZHxpBGgfswAdI9kgCAfZIB0j2SAID7MEjUPZIAgPswSNQ9khSHqDqF7Huv9XqeUD/u2vHRiqg6hex7r9GKl1RC+N39WICeUD/u2vFYgFL9Qvjd/ViAAABC+N39dICHUP//pfF0gJdUQvjd/XSAUv1C+N39dICHUP//o1D/P4dQ//+l8f8/IvH//6NQ/z8i8f//o1BRAFL9Qvi2VFEAUv1C+N39UQBS/UL4tlQ9AFL9QvgAAD0AZfE/7rVQPQBS/UL43f09AGXxP+61UGvPhK+F7JU6a8+Er4XslTp+LX2SSNTWMGPRfZJI1NYwAAB9kgHS1jAAAH2SAdI9kgAAko+2R1kw9wCSj7ZHxpD3AH6iaSw2NgAAfqJpKTY2AAB+omkpAAAAAH6iaSlfogAAfqJpLF+iAAAG+C0RwlK4AH6iaSk2NrgABvgtEQL4uAB+omkpX6K4AAb4LREAAHgABvgtEcJSeAAG+C0RAvh4AEyw50u+sZcBTLDnS1Y7lwGSj7ZHxpCXAUyw50u+sUOCko+2R8aQQ4IKOudLvrFDggo650u+sQCATLBpv76xAIBMsOdLvrEAgAo6ab++sQCATLDnS1Y7AABMsGm/vrEAAEywab9WOwAATLDnS76xAAAKOudLvrHjsi0sLEsciOOyCjppv76x+bMKOudLvrFMtwo6ab++sSGBTLBpv76xIYEtLNe/HIh5sgo6ab++sXmyTLDnS1Y7qQO3hte/dS3OAbeGLEt1LaoDTLBpv1Y7zAFMsOdLVjsAAEywab9WO78ATLBpv76xvwBMsGm/VjsFAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9/////f////3////9/////f///////fwAA/3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/O64dVzuuHVc8rh5XPK4eVzyuHlciKLsvISi8LyEovC8hKLwvISi8L/+//3//v/9//7//f/+//3//v/9//7//f/cnETD4JxAw+ScQMPcnETBArB9WQKwgVkCsIFZArB9W4wHwwOMB8MDjAfDA4wHwwLq4W1y7uFxcu7hdXLq4Wlx3vw+BvgHewHe/D4F3vw+Bd78PgZW/04CVv9OA/7//f/+//3//v/9/vL+FgP+//3+Zv8qAmb/LgLy/hYC8v4WA+3/9//t//f/4aWrLHoDM/5tyB+AdgMz/F+72fwIARm4a7vp/F+72fwAAt5EAALeRAAD/fwAA/38AAP9/AAD/f7gmjzK3JpAytyaQMrcmkDJEACHARAAhwNK/WYDRv1qA0b9agAAA/38AAP9/AAD/f////3////9/AAD/f////3////9/////f////3////9/////f////3////9//3////9/////f////3///////3////9//3////9/////f///AAD/f////38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3/Rv1qA0b9agNG/WoBEACHARAAhwEQAIcBEACHAtyaQMrgmkDI8rh1XIii8L/+//3//v/9//7//f3e/D4F3vw+B/7//f/+//3//v/9//7//f/+//3+Zv8uAmb/KgJm/y4CZv8uAvL+FgLy/hYC8v4WAvgHewL4B3sC+Ad7AAAD/fwAA/38AAP9//3////9/////f////3////+//3//v/9//7//f/+//3/6f/7/+n/+/5hyAODsaU7L////f////38hgM3/IYDN/wDYTGZM4kRy/tdJZljiUnIa7vp/lb/TgJW/04ABAEZu") +}, { +"aabb": AABB(-0.984553, -25.1276, -0.95724, 0.1369, 16.7513, 0.138266), +"attribute_data": PackedByteArray("/+f//0z/3i5M/////+feLq3o/////94urejeLv////8="), +"format": 34896613399, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"material": SubResource("StandardMaterial3D_btu5w"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(1.20736, 2.4759, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("AAAAAP7/AIDzU/////8AgPNTAAD+/wCAAAD/////AID//wAAAAAAAP////+AVQAA/////wAAAAD//wAAgFUAAP9/////f////3////9/////v/9//7//f/+//3//v/9/") +}, { +"aabb": AABB(-0.984553, -35.921, -0.95724, 0.260146, 33.7366, 0.260051), +"attribute_data": PackedByteArray("msj//4utffGkrf//T8h98SigffEooP//msj//4utffFPyH3xpK3//yigffEooP//Onhcwk6ODtsAilzCOngO23a6DtuNrVzCH4J1rL+WEIG/lnWsH4IQgQDAEIEAwHWsOngO2zGKdsNOjg7bOnh2wyCudsN2ug7bKKBA1b2o/9MnqEDVKKD/0+W5/9MluEDVKKAjV72oFlG9qCNXKKAWUeW5FlHluSNXKKD/096n3tW9qP/TKKDe1Um33tXluf/TjN9UZ1rqH1pa6lRnjN8fWvf/H1r3/1RnjN9UZ13qH1qM3x9aXepUZ///H1r//1Rn5blJ5km30OBJt0nm5bkx4Em33tXluf/TKKAjV7uoFlEooBZRu6gjV+G5FlHhuSNXJbhJ5uW5MeDluUnmJbic4OW5/9MluEDVi7k0bAWQj44FkDRsi7ltlgWQRdOLud3qH4J1rL2WEIEfghCBvZZ1rPm/EIH5v3Wsja1lXHa6noZ2umVcja1ifna6DtuNrVzC"), +"format": 34896613399, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAAADAAEAAgABAAQAAgAEAAUABgAHAAgABgAJAAcACQAKAAcACQALAAoADAANAA4ADAAPAA0ADgANABAADgAQABEAEgATABQAEgAVABMAFAATABYAFAAWABcAGAAZABoAGAAbABkAGgAZABwAGgAcAB0AHgAfACAAHgAhAB8AIAAfACIAIAAiACMAJAAlACYAJAAnACUAJgAlACgAJgAoACkAKgArACwAKgAtACsALAArAC4ALAAuAC8AMAAxADIAMAAzADEAMgAxADQAMgA0ADUANgA3ADgANgA5ADcAOQA6ADcAOQA7ADoAPAA9AD4APAA/AD0APwBAAD0APwBBAEAAQgBDAEQAQgBFAEMARQBGAEMARQBHAEYASABJAEoASABLAEkASwBMAEkASwBNAEwATgBPAFAATgBRAE8AUQBSAE8AUQBTAFIAVABVAFYAVABXAFUAVwBYAFUAVwBZAFgAWgBbAFwAWgBdAFsAXQBeAFsAXQBfAF4A"), +"material": SubResource("StandardMaterial3D_04fvv"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(3.92971, 5.52666, 0, 0), +"vertex_count": 96, +"vertex_data": PackedByteArray("//8AAP//BgAn/tYPzlQGAP//AABsVQYAJ/7WDyf+BgAn/tYPAAAGAP//AAAAAAYA//8AAP//CIDeVNYPJ/4IgCf+1g8n/giAfFUAAP//CIAAANYPJ/4IgAAAAAD//wiAAAC+NV+i0XxpQ505qsnRfFE2vjVfotF8AACdOarJ0XzFyZ05qsnRfH6ivjVfotF8AACdOarJAIBpQ9VFqskAgGlDnTmqyQCAAADVRarJAIDFydVFqskAgMXJnTmqyQCAAADVRarJU4PmNl9JH6RTg2lD1UWqyVODAABfSR+kU4M9pF9JH6RTg8XJ1UWqyVODAADC17SXq4N7NrbY3aKrg8oywte0l6uDAAC22N2iq4P+orbY3aKrg+qXwte0l6uDAAC22N2iAIB7Ngfj3aIAgHs2ttjdogCAAAAH492iAID+ogfj3aIAgP6ittjdogCAAAAH492iG3z7MF7kPZIbfHs2B+Pdoht8AABe5D2SG3x9kl7kPZIbfP6iB+Pdoht8AADC6cfKAICwQ///x8oAgLBDwunHygCAAAD//8fKAICdyv//x8oAgJ3KwunHygCAncrC6QAAAACdyv//rkMAAJ3K//8AAAAAncrC6a5DAACdyv//x8oAAJ3KwunHygAA/qIH4wAA3Cx9kl7k1jDcLH2SXuQAANws/qIH42A23Cx9kl7kPZLcLP6iB+Pdotws/qK22AAAAAD+ogfjYDYAAP6iB+MAAAAA/qK22GA2AAD+ogfj3aIAAP6ittjdogAA6pfC1wAAQdP+orbYYDZB0/6ittgAAEHT6pfC16gyQdP+orbY3aJB0+qXwte0l0HTxcnVRQAAb9M9pF9JzDZv0z2kX0kAAG/TxcnVRU9Db9M9pF9JH6Rv08XJ1UWqyW/TxcmdOQAAAADFydVFT0MAAMXJ1UUAAAAAxcmdOU9DAADFydVFqskAAMXJnTmqyQAAfqK+NQAAeizFyZ05T0N6LMXJnTkAAHosfqK+NTY2eizFyZ05qsl6LH6ivjVfonos+78GgPu/BoD7vwaA+78GgPu/BoD7vwaA////f////3////9/////f////3////9/AAD/fwIA/38AAP9/BgD/fwAA/38AAP9//3//f/9/////f/9//3////9/////f///////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f///////f////3////9/////f////3////9//3////9/////f////3////9/////f////7//f/+//3//v/9//7//f/+//3//v/9/aK2zVmittFZorbRWaK2zVmittFZorbRW/7//f/+//3//v/9//7//f/+//3//v/9/XylALV8pQC1fKUAtXylALV8pQC1fKUAtBa2CVgWtglYFrYJWBa2CVgWtglYFrYJW/7//f/+//3//v/9//7//f/+//3//v/9/iinqLIop6iyKKeosiinqLIop6iyKKeos") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_mfebi") + +[sub_resource type="ArrayMesh" id="ArrayMesh_wk7qc"] +_surfaces = [{ +"aabb": AABB(0.755518, -35.921, -0.95724, 0.260146, 36.7557, 0.260051), +"format": 34896613377, +"index_count": 456, +"index_data": PackedByteArray("AAACAFgAAAABAAIAWAACAAMABgAAAFgAWAADAAQABgBYAAUABQBYAAQABQAEAAcACwBZAAgACAAJAAoACABZAAkAWQAMAAkAWQBaAAwAWgANAAwACwBbAFkAWwBaAFkACwBcAFsACwAWAFwAFgAVAFwAFgAXABUAXAAVABQAXAAUAF0AWwBcAF0AXQAUABMAWwBeAFoAWwBdAF4AWgBfAA0AXgBfAFoAXwAPAA0AXwAOAA8AXQATAGAAXgBdAGAAYAATABIAYAASABEAXgBgAGEAXgBhAF8AYQBgABEAYQAOAF8AYQARABAAYQAQAA4AGAAZABoAGAAbABkAGQAcABoAGQAeABwAHAAeAB8AHAAfACAAYgAeABkAYgAfAB4AGwBjABkAGwAdAGMAKQBjAB0AGQBjAGQAGQBkAGIAKQAkAGMAJABkAGMAKgAkACkAKgArACQAKwAsACQAKwAtACwALQAuACwAJAAsAC4ALQAvAC4AJAAuAGUAJABlAGQAZQAuADAAZQBmAGQAYgBkAGYAZQAwAGcAZQBnAGYAZwAwADIAMwAyADAAMwA0ADIAMQAyADQAZwAyADEAMQA0ADUAZwAxACEAZwAhAGYAaABmACEAYgBmAGgAaAAfAGIAaAAhACIAaAAjAB8AIgAjAGgAIgAlACMAJgAjACUAJwAlACIAJgAlACgAJwAoACUANgBpADgANgA3AGkAOABpAGoAOABqADsAOwBqAEEAOwBBAEIAagBAAEEANwBrAGkANwA5AGsAPQBrADkAaQA6AGoAagA6AEAAaQBrADoAPQBsAGsAbAA6AGsAPgBsAD0APgA8AGwAbABtADoAbQBAADoAPABtAGwAbQBDAEAAPAA/AG0APwBDAG0APwBEAEMARQBuAEcARQBGAG4ARwBuAG8ARwBvAE4ARgBIAG4ARgBJAEgASgBIAEkAbgBIAE0AbgBNAG8ASgBwAEgAcABNAEgATABwAEoATABLAHAASwBxAHAAcABxAE0ASwBPAHEAbwBNAHIAcQByAE0ATwBzAHEAcQBzAHIATwBRAHMAbwByAHQATgBvAHQATgB0AFAAdAByAFIAcwBSAHIAUAB0AHUAdABSAHUAUAB1AFMAcwB2AFIAUQB2AHMAdQBSAHYAUQBUAHYAUwB1AHcAdQB2AHcAdwB2AFQAUwB3AFUAdwBUAFYAVQB3AFYAVQBWAFcA"), +"lods": [0.0596026, PackedByteArray("AAABAAIAAAACAAMAAAADAAQABQAAAAQABgAAAAUABQAEAAcACAAJAAoACAALAAkACwAMAAkACwANAAwADQAOAA8ACwAOAA0ACwAQAA4ACwARABAACwASABEACwATABIACwAUABMAFQAUAAsACwAWABUAFgAXABUAGAAZABoAGAAbABkAGQAcABoAGwAdABkAGQAeABwAHAAeAB8AGQAfAB4AHAAfACAAGQAdACEAIgAfABkAGQAhACIAIgAjAB8AJAAhAB0AIgAlACMAJgAjACUAJwAlACIAJgAlACgAJwAoACUAKQAkAB0AKgAkACkAKgArACQAKwAsACQAKwAtACwALQAuACwAJAAsAC4ALQAvAC4AJAAuADAAJAAwADEAJAAxACEAMQAwADIAMwAyADAAMwA0ADIAMQAyADQAMQA0ADUANgA3ADgANwA5ADgAOAA5ADoAOAA6ADsAPAA6ADkAPQA8ADkAPgA8AD0APAA/ADoAOwA6AEAAPwBAADoAOwBAAEEAOwBBAEIAPwBDAEAAPwBEAEMARQBGAEcARgBIAEcARgBJAEgASgBIAEkASgBLAEgATABLAEoARwBIAE0ASwBNAEgARwBNAE4ASwBPAE0ATgBNAFAATwBRAE0AUABNAFIAUQBSAE0AUABSAFMAUQBUAFIAUwBSAFQAUwBUAFUAVQBUAFYAVQBWAFcA")], +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 120, +"vertex_data": PackedByteArray("AAAAAGxVAAAAAAAA//8AAIKqAAD//wAA//8AAP//AAD//wAAbFUAAIKqAAAAAAAAAAAAAAAAAAD//wAAAAAAACCriQ4n/gAA//8tEQL4AAD//4kOJ/4AANcBiQ4n/gAA//9pKV+iAAD//2ksX6IAAK3JVDFfogAA//9UMV+iAACAXVQxX6IAAIBdVDE2NgAAgF1UMQAAAACAXWksAAAAAIBdaSkAAAAA+ActEQAAAADXAYkOzlQAANcBiQ4AAAAA//9YQx+kAADd0LZHxpAAAP//tkfGkAAAGMlYQx+kAAD//zZI3m4AAMFbWEMfpAAAK9w2SN5uAADR0yxLHIgAAP//LEsciAAAFGgJxrSXAAA0zQnGtJcAANHT178ciAAAbHC2R1kwAADx3hvEe2YAAP//178ciAAA//8JxrSXAAD//xvEe2YAAMFbWEPMNgAAwVtYQwAAAABscLZHAAAAAFWSNkgLJQAAVZI2SAAAAABHeSxLdS0AAEd5LEsAAAAAR3nXv3UtAAAUaAnGqDIAAKiaG8RAIgAAR3nXvwAAAAComhvEAAAAABRoCcYAAAAA//+c0T2SAAADz5zRPZIAAP//AdI9kgAAgW2c0T2SAACBbUjUPZIAAP//SNQ9kgAAgW0B0gAAAACBbZzR1jAAAIFtnNEAAAAAgW1I1AAAAABhNY/Wx8oAAE68j9bHygAA//+P1sfKAABhNY/WrkMAAGE1j9YAAAAA///46sfKAABOvPjqx8oAAP//hex7rwAAelCF7HuvAABhNfjqx8oAAGE1+OquQwAAelCF7AAAAABhNfjqAAAAAJkOP+7a8QAA//8/7trxAACZDj/uAAAAAP//Qvjd/QAArAJC+AAAAADcDv//pfEAAP////+l8QAA3A7//wAAAAD/////o1AAAHev//8AAAAA/////wAAAACCqgAAbFUAACutLREC+AAArclpKV+iAAD4By0RAvgAAPgHLRHCUgAAgF1pKTY2AACAXWkpX6IAAK3JaSxfogAAgF1pLDY2AACAXWksX6IAAPTF50u+sQAAbHC2R8aQAACyT+dLvrEAALJP50tWOwAAsk9pv76xAACyT2m/VjsAAPTFab++sQAAA88B0j2SAAADz0jUPZIAAIFtAdI9kgAAgW0B0tYwAACBbUjU1jAAAFbFhex7rwAAYK8/7trxAAB6UIXslToAAJkOP+61UAAArAJC+N39AACsAkL4tlQAAGerQvjd/QAAd6///6XxAADcDv//o1AAAHev//+jUAAA") +}, { +"aabb": AABB(0.878764, -25.1276, -0.95724, 0.1369, 16.7513, 0.138266), +"format": 34896613377, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("//8AAP7/AAALrP////8AAP///////wAAC6wAAP7/AAAAAAAAAAAAAAAA//+AVQAAAAAAAIBVAAAAAP//AAAAAA==") +}, { +"aabb": AABB(0.755518, -35.921, -0.95724, 0.260146, 33.7366, 0.260051), +"format": 34896613377, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAAACAAMAAAAEAAEABAAFAAEABAAGAAUAAAADAAcABwADAAgABwAIAAkACgALAAwACgANAAsADAALAA4ADAAOAA8ADwAOABAADwAQABEADgASABAADQATAAsADQAUABMAFQATABQACwAWAA4ADgAWABIACwATABYAFQAXABMAFwAWABMAGAAXABUAGAAZABcAFwAaABYAGgASABYAGQAaABcAGgAbABIAGQAcABoAHAAbABoAHAAdABsAHgAfACAAHgAhAB8AIAAfACIAIAAiACMAIwAiACQAIwAkACUAIgAmACQAIQAnAB8AIQAoACcAKQAnACgAHwAqACIAIgAqACYAHwAnACoAKQArACcAKwAqACcALAArACkALAAtACsAKwAuACoALgAmACoALQAuACsALgAvACYALQAwAC4AMAAvAC4AMAAxAC8AMgAzADQAMgA1ADMANQA2ADMANQA3ADYAOAA2ADcAOAA5ADYAOgA5ADgAOgA7ADkA"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 60, +"vertex_data": PackedByteArray("AAAAAP//AADXAdYPzlQAANcB1g8n/gAAIKvWDyf+AAAAAAAAbFUAANcB1g8AAAAAAAAAAAAAAACCqgAA//8AAP//1g8n/gAA//8AAP//AAD//741X6IAAJW8nTmqyQAA//+dOarJAACtyb41X6IAAJW81UWqyQAA///VRarJAAAYyV9JH6QAAP//X0kfpAAAwVtfSR+kAAA5Np05qskAAIBdvjVfogAAgF2+NTY2AAA5NtVFqskAADk2nTlPQwAAgF2+NQAAAAA5Np05AAAAADk21UVPQwAAwVtfScw2AAA5NtVFAAAAAMFbX0kAAAAA///C17SXAACDybbY3aIAAP//ttjdogAANM3C17SXAACDyQfj3aIAAP//B+PdogAAA89e5D2SAAD//17kPZIAAIFtXuQ9kgAAAF222N2iAAAUaMLXtJcAABRowteoMgAAAF0H492iAAAAXbbYYDYAABRowtcAAAAAAF222AAAAAAAXQfjYDYAAIFtXuTWMAAAAF0H4wAAAACBbV7kAAAAAP//wunHygAATrz//8fKAAD/////x8oAAE68wunHygAAYTX//8fKAABhNcLpx8oAAGE1wumuQwAAYTX//65DAABhNcLpAAAAAGE1//8AAAAA") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_yrm7d"] +resource_name = "18_A1_CORRIDOR_A_Cube_006" +_surfaces = [{ +"aabb": AABB(0.755518, -35.921, -0.95724, 0.260146, 36.7557, 0.260051), +"attribute_data": PackedByteArray("//+M6P//7dJ20O3Ssrjt0rK4jOh20Fzz//9c87K4XPNK0P//srgG/bK4//97////sriQ57K4HOTGx3Lesrhy3u7lct6yuLDJxcWnxFS4p8Tvx7DJa+awyfvijFLKxoxSxcUG4VS4U+VUuAbhnsJT5VS4FMTyxKvAVLirwJ7CFMRUuB/i2MFj5lS4Y+byxB/isrgl4NjBY+bKxiXgVLhj5rK4NUpJxjVKsrjsSXjhNUp44UhIsrhISLK41+CAy6zZsris2R3xrNl44dfgsris2YDLrNmyuCLdj+ki3R3xrNmyuCjpFc9c87K4XPPa+1zzsri/1Nr7v9Qd8Vzzj+lc8x3xzOqP6SLdHfGs2XjhXPMd8VzzHfHM6h3xrNl44dfgsrg1SrK47ElExjVKaeE1SmnhSEiyuEhI++L07OHUXPP74lzz4dQJ7y/eXPPh1AnvL96d7eHUXPOyuBTEU8WrwPvCFMSyuKvAp+Bc8zPXru6n4D/tM9dc87K4sMkhxqfE7cewybK4p8Rk5rDJ7uKMUsbGjFJ7////srgc5LK4ct6yuJDnxMdy3ujlct6yuAb9StD//7K4//8A4afElt6rwI3XFMTu4oxSlt4CVzfV71On4KfEL94CV/vijFLh1O9TL96rwDPXFMSyuCLd7fu41LK4uNSP6SLdj+lc8+37uNSP6SLd7ftc87K4kzWyuF0uDvyTNf/7yiiyuMoosriTNe37kzWyuF0u2vvKKLK4yih20IzouM8G/cb9Bv24zwb9sriQ57K4Bv3Gx5Dnxv0G/e7lkOfGx5Dnxscc5O7lkOfu5RzkxcWnxKfgp8RJxuxJScZISHjh7ElJxtfg/Mgi3RvPuNT8yCLdNtBdLhvPkzVA/10usrhdLhXPyig20F0uQP9dLhXPKOkVz7/U2vso6bK4XS4hz8ooQ9BdLmf/XS5D0F0uJs+TNWf/XS7t+yXpj+nz64/p8+t44TDtRMZISETG7Elp4exJAOGnxMTHHOTo5Rzk6OWQ58THkOe4zwb9sriQ58THkOeyuAb9xf0G/ejlkOe4zwb9xf0G/SHGp8Qw6tS/AOGnxDHJ1L/H6dS/z8jUv6fgp8TPyNS/x+lSV8/IUlfH6dS/McnUvzDqUlcw6tS/MclSVzDq1L8w6lJXlt6rwDDq1L+W3gJXz8hSV8fpUlcw6lJXx+nUv8fpUlcv3qvAx+nUvzHJUlcw6lJXx+lSVy/eAlc="), +"format": 34896613399, +"index_count": 456, +"index_data": PackedByteArray("AAACAIwAAAABAAIAjAACAAMABgAAAIwAjAADAAQABgCMAAUABQCMAAQABQAEAAcACwCNAAgACwCOAI0ACACNAAkACAAJAAoAjwCQAJEAjwCSAJAAkwCSAI8AkwCUAJIAlQANAAwAlQCWAA0AlgAPAA0AlwCWAJUAlgAOAA8AlwCYAJYAmAAOAJYAmAAQAA4AEQCZABMAEQAUAJkAFACaAJkAFAAVAJoAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKACbACoAKAApAJsAKgCbAJwAKgCcAC0AmwAsAJwAmwCdACwAKQCdAJsAKQArAJ0ALgAvADAALgCeAC8AngAxAC8AngAyADEAMwCfADUAMwA0AJ8ANAA2AJ8ANAA3ADYAegCgAHwAegChAKAAoQB7AKAAoQB9AHsAhwCiAIkAhwCjAKIAowCkAKIAowCIAKQApQCmAIsApQCnAKYApwCKAKYApwCoAIoAPACpADgAPACqAKkAOACpADkAOAA5ADoAqQA7ADkAqQCrADsAqgCrAKkAqgA9AKsArACtAK4ArACGAK0ArgCtAIUArgCFAK8AggCwALEAggCDALAAsQCwALIAsQCyAIQAfgCzALQAfgCBALMAtACzAH8AtAB/AIAAPgC1AEAAPgA/ALUAQAC1AEEAQABBAEIAQwBFALYAQwBEAEUAtgBFAEYAtgBGAEcASQC3ALgASQBNALcAuAC3AEwASABJALgAuABMALkASAC4AEoASgC4ALkASgC5AEsATgBPAFAATgBRAE8AUgBTAFQAUgBVAFMAVgBXAFgAVgBZAFcAWgBbAFwAWgBdAFsAXgBfAGAAXgBhAF8AYABfALoAYAC6AGIAuwBnAGkAuwBmAGcAvAC7AGkAvABpAGoAvQC7ALwAvQC+ALsAvgBmALsAvgBoAGYAvwDAAMEAvwDCAMAAwwC/AMEAwwDBAMQAbABrAMUAbABtAGsAZQBsAMUAZQDFAMYAxwDIAMkAxwDKAMgAEgDLAMwAEgDNAMsAzgDPANAAzgDRAM8A0gDTANQA0gDVANMA1gBwAG4A1gBvAHAA1wDYANkA1wDaANgA2wAWABcA2wDcABYAcQByAN0AcQBzAHIA3gB1AN8A3gB4AHUAdADgAOEAdAB5AOAA4gBjAOMA4gBkAGMA5AB3AHYA5ADlAHcA"), +"lods": [0.0596026, PackedByteArray("AAABAAIAAAACAAMAAAADAAQABQAAAAQABgAAAAUABQAEAAcACAAJAAoACAALAAkACwAMAAkACwANAAwACwAOAA0ADQAOAA8ACwAQAA4AEQASABMAEQAUABIAFAAVABIAEgAVABYAEgAWABcAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKAApACoAKQArACoAKgArACwAKgAsAC0ALgAvADAALgAxAC8ALgAyADEAMwA0ADUANAA2ADUANAA3ADYAOAA5ADoAOAA7ADkAPAA7ADgAPAA9ADsAPgA/AEAAQAA/AEEAQABBAEIAQwBEAEUAQwBFAEYAQwBGAEcASABJAEoASgBJAEsASQBMAEsASQBNAEwATgBPAFAATgBRAE8AUgBTAFQAUgBVAFMAVgBXAFgAVgBZAFcAWgBbAFwAWgBdAFsAXgBfAGAAXgBhAF8AYABfAGIAXwBjAGIAXwBkAGMAZQBmAGcAZQBoAGYAZQBnAGkAZQBpAGoAawBoAGUAZQBsAGsAbABtAGsAbgBvAHAAcQBvAG4AcQByAG8AcQBzAHIAdAB1AHYAdgB1AHcAdAB4AHUAdAB5AHgAegB7AHwAegB9AHsAfgB/AIAAfgCBAH8AggCDAIQAgwCFAIQAgwCGAIUAhwCIAIkAiQCIAIoAiQCKAIsA")], +"material": SubResource("StandardMaterial3D_lsgue"), +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(2.22908, 4.9004, 0, 0), +"vertex_count": 230, +"vertex_data": PackedByteArray("AAAAAGxVAAAAAAAA//8AAIKqAAD//wAA//8AAP//AAD//wAAbFUAAIKqAAAAAAAAAAAAAAAAAAD//wAAAAAAACCriQ4n/gAA//8tEQL4AAD//4kOJ/4AANcBiQ4n/gAA//9pKV+iAAD//2ksX6IAAK3JVDFfogAA//9UMV+iAACAXVQxX6IAAP//WEMfpAAA3dC2R8aQAAD//7ZHxpAAABjJWEMfpAAAwVtYQx+kAAAUaAnGtJcAADTNCca0lwAA3dC2R8aQ/////zZI3m7/////tkfGkP//K9w2SN5u/////zZI3m4AANHTLEsciAAA//8sSxyIAAAr3DZI3m4AAP//178ciP//8d4bxHtm/////xvEe2b//9HT178ciP////8JxrSXAADx3hvEe2YAADTNCca0lwAA//8bxHtmAAD//5zRPZIAAAPPnNE9kgAA//8B0j2SAACBbZzRPZIAAIFtSNQ9kgAA//9I1D2SAAD//0jUPZIAAE68j9bHygAA//+P1sfKAABhNY/Wx8oAAIFtSNQ9kgAA///46sfK//9OvPjqx8r/////hex7r///elCF7Huv//9hNfjqx8r///////+jUP//d6///wAA////////AAD//9wO//8AAP///////6Xx///cDv//pfH//2E1+OoAAEbYelCF7AAARthhNfjqrkNG2HpQhex7r0bYYTX46sfKRtiBbUjUAAB9JmE1j9YAAH4mYTWP1q5DfiZhNY/Wx8p+JoFtSNQ9kn4mgW2c0QAA/7+BbQHSAAD/v4FtnNHWMP+/gW2c0T2S/7+BbUjUPZL/v4FtSNQAAP+/FGgJxqgyOSaomhvEAAA4JhRoCcYAADkmqJobxEAiOCZHede/AACl1qiaG8RAIqTWR3nXv3UtpdaomhvEAACk1lWSNkgAAAjAR3ksS3UtCMBVkjZICyUIwEd5LEsAAAjAbHC2RwAAluBVkjZICyWV4GxwtkdZMJfgVZI2SAAAlODBW1hDAAACwGxwtkdZMALAwVtYQ8w2AsBscLZHAAACwMFbWEMfpALAFGgJxrSXAcAUaAnGqDIBwNcBiQ4n/v+/gF1pLAAA/7+AXVQxAAD/v4BdaSkAAP+/gF1UMTY2/7+AXVQxX6L/v/gHLREAAP+/1wGJDs5U/7/XAYkOAAD/v93QtkfGkAAA0dMsSxyIAAAr3DZI3m4AADTNCca0lwcA0dPXvxyIBQDx3hvEe2YHAGxwtkdZMOLyR3nXv3UtAPMUaAnGqDIE86iaG8RAIgTzR3ksS3UtaPNVkjZICyXi8v//hex7rwAAmQ4/7trxAAD//z/u2vEAAHpQhex7rwAAelCF7AAANCSZDj/u2vE1JHpQhex7rzUkmQ4/7gAANSSZDj/uAAD/v6wCQvgAAP+/mQ4/7trx/7/cDv//pfH/v9wO//8AAP+///8/7trxAACZDj/u2vEAAP//Qvjd/QAA3A7//6XxAAD/////pfEAAIKqAABsVQAAK60tEQL4AAD4By0RAvgAACutLREC+AAA//9pKV+iAAD//y0RAvgAAK3JaSlfogAA+ActEQL4AACAXWkpX6IAAK3JaSlfogAArclpLF+iAACAXWkpX6IAAIBdaSxfogAA3dC2R8aQAABscLZHxpAAAAPPAdI9kgAAA89I1D2SAACBbQHSPZIAAAPPSNQ9kgAAVsWF7Huv//9grz/u2vEAAFbFhex7rwAAZ6tC+N39AABgrz/u2vEAAKwCQvjd/QAA//9C+N39AAB3r///pfEAAGerQvjd/QAArAJC+N39AAB3r///o1D//3ev//+l8f//3A7//6NQ//+sAkL4AAD/v9wO//+jUP+/rAJC+LZU/7+sAkL43f3/v6wCQvi2VP+/mQ4/7rVQ/7+sAkL43f3/v5kOP+61UDUkelCF7JU6NCR6UIXslTpG2IFtSNTWMH0mgW1I1NYw/7+BbQHS1jD/v4FtAdI9kv+/bHC2R8aQAsCAXWksNjb/v4BdaSxfov+/gF1pKV+i/7+AXWkpNjb/v/gHLRHCUgDAgF1pKQAAAMCAXWkpNjYAwPgHLREAAADA+ActEQL4AMCAXWkpX6IAwPgHLRHCUv+/+ActEQL4/79scLZHWTAHwLJP50u+sQfAbHC2R8aQB8CyT+dLVjsHwLJP50u+sQAA9MXnS76xAABscLZHxpAAAPTF50u+sQAAsk9pv76xAAD0xWm/vrEAALJP50u+sQAAsk/nS1Y7/7+yT2m/vrH/v7JP50u+sf+/sk9pv1Y7/7/0xedLvrEAAPTFab++sSgJ0dMsSxyIsRL0xedLvrHBEtHT178ciCUJ9MVpv76xAACyT2m/vrEAAPTFab++sQUAsk/nS1Y7Z/OyT2m/VjsA80d5LEt1LeLysk/nS1Y74vKyT2m/VjsBwLJPab++sQHAsk9pv1Y7BPNHede/dS0E8/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//38Lgf9/C4H/fwuB/38Lgf9//3//f/9//3//f/9//3//f/9//3/4gf9/iHz/f/iB/3/4gf9/+IH/f8CB/3/Agf9/zJf/f8yX/3/Ml/9/zJf/f0F8/39BfP9/QXz/f0F8/394g/9/eIP/f3iD/394g/9/enX/f3p1/396df9/enX/f/9//3//f/9//3//f/9//3//f/9//3//f711/3+9df9/vXX/f711/3+9df9/dof/f3aH/392h/9/dof/f3aH/3//v/9//7//f/+//3//v/9//7//f/+/wlhgrMJYYKzCWGCswlhgrMJYYKzw0hza79Id2vDSHdrv0h3a79Id2v9/////f////3////9/////f////3///8rSaNrL0mfaytJo2svSZ9rkVnGr5FZxq+RWcavkVnGrxHhh/MR4YfzEeGH8xHhh/GdhsrBoYbOwZ2GxsGlhtLASgtj7EoLY+xKC2PsSgtj7EoLY+56BwPyegcD8B4Hu/f9//v//f////3/+//9/////f///B4Hu/QeB7v0Hge79AABhygAAYcoAAGHKQbUMgEG1DoBBtQyAAID8/51wHe72f/7/9n/+/xRki98AgPz//3/pcP9/6XD/f+lw/3/pcLjRjty30Y/ct9GP3LfRj9zufnb/7n52/+5+dv+zgJf+s4CX/v9/dH//f3R//390f/9/tYD/f7WA/3//P/9/C4H/fwuB/3+Ugf9/lIH/f5SB/3+Ugf9/lIH/f5SB/3//f/9//3//f/9//3//f/9/+IH/f/iB/3//f/9//3//f/9//3+9df9/dof/f+lw/3/pcP9/dH//f3R//390f/9/tYD/f7WA/3+1gP9/tYD/f/+//3//v/9//7+ygJf+s4CX/rOAl/6zgJf+7n52/+5+dv/ufnb/t9GP3LfRjtzCWGCs8NId2v9/////f////3///xKC2Pv/f////3////9/////f/7/j4Hf/I6B3/yPgd/8j4Hf/I+B3/yPgd/8B4Hu/QeB7v1MeaX8THml/Ex5pfxMeaX8/3+IfP9/iHz/f4h8/3//f/9//3//f/9//3//f/9/////f////3////9///8AAGHKqLLteMavC3LBr/9xqbLueP9/wIH/f8CBQbUOgBdkjt+tcC/uAYD7/wGA+/+egcD8noHA/AqA/P8LgPv/") +}, { +"aabb": AABB(0.878764, -25.1276, -0.95724, 0.1369, 16.7513, 0.138266), +"attribute_data": PackedByteArray("/+f//0z/3i7/594uTP///63o/////94u/////63o3i4="), +"format": 34896613399, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"material": SubResource("StandardMaterial3D_btu5w"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(1.20736, 2.4759, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("//8AAP7/AAALrP////8AAP///////wAAC6wAAP7/AAAAAAAAAAD/vwAA//+AVf+/AAAAAIBV/78AAP//AAD/v/9//3//f/9//3//f/9//3//f////3////9/////f///") +}, { +"aabb": AABB(0.755518, -35.921, -0.95724, 0.260146, 33.7366, 0.260051), +"attribute_data": PackedByteArray("msj//4utffFPyH3xpK3//yigffEooP//msj//4utffGkrf//T8h98SigffEooP//Onhcwk6ODts6eA7bAIpcwna6DtuNrVzCH4J1rL+WEIEfghCBv5Z1rADAEIEAwHWsOngO2zGKdsM6eHbDTo4O2yCudsN2ug7bKKBA1b2o/9MooP/TJ6hA1eW5/9MluEDVKKAjV72oFlEooBZRvagjV+W5FlHluSNXKKD/096n3tUooN7Vvaj/00m33tXluf/TjN9UZ1rqH1qM3x9aWupUZ/f/H1r3/1RnjN9UZ13qH1pd6lRnjN8fWv//H1r//1Rn5blJ5km30ODluTHgSbdJ5km33tXluf/TKKAjV7uoFlG7qCNXKKAWUeG5FlHhuSNXJbhJ5uW5MeAluJzg5blJ5uW5/9MluEDVi7k0bAWQj46LuW2WBZA0bAWQRdOLud3qH4J1rL2WEIG9lnWsH4IQgfm/EIH5v3Wsja1lXHa6noaNrWJ+drplXHa6DtuNrVzC"), +"format": 34896613399, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAAADAAEAAwAEAAEAAwAFAAQABgAHAAgABgAJAAcACAAHAAoACAAKAAsADAANAA4ADAAPAA0ADwAQAA0ADwARABAAEgATABQAEgAVABMAFQAWABMAFQAXABYAGAAZABoAGAAbABkAGwAcABkAGwAdABwAHgAfACAAHgAhAB8AIQAiAB8AIQAjACIAJAAlACYAJAAnACUAJwAoACUAJwApACgAKgArACwAKgAtACsALQAuACsALQAvAC4AMAAxADIAMAAzADEAMwA0ADEAMwA1ADQANgA3ADgANgA5ADcAOAA3ADoAOAA6ADsAPAA9AD4APAA/AD0APgA9AEAAPgBAAEEAQgBDAEQAQgBFAEMARABDAEYARABGAEcASABJAEoASABLAEkASgBJAEwASgBMAE0ATgBPAFAATgBRAE8AUABPAFIAUABSAFMAVABVAFYAVABXAFUAVgBVAFgAVgBYAFkAWgBbAFwAWgBdAFsAXABbAF4AXABeAF8A"), +"material": SubResource("StandardMaterial3D_04fvv"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(3.92971, 5.52666, 0, 0), +"vertex_count": 96, +"vertex_data": PackedByteArray("AAAAAP///7/XAdYPzlT/v9cB1g8n/v+/AAAAAGxV/7/XAdYPAAD/vwAAAAAAAP+/AAAAAP//AAAgq9YPJ/4AAIKqAAD//wAA1wHWDyf+AAD//9YPJ/4AAP//AAD//wAA//++NV+i//+VvJ05qsn/////nTmqyf//rcm+NV+i//85Np05qsn//4BdvjVfov////+dOarJAACVvNVFqskAAP//1UWqyQAAlbydOarJAAA5NtVFqskAADk2nTmqyQAA///VRarJAAAYyV9JH6QAAP//X0kfpAAAlbzVRarJAADBW19JH6QAADk21UWqyQAA///C17SXAACDybbY3aIAAP//ttjdogAANM3C17SXAAAAXbbY3aIAABRowte0lwAA//+22N2iAACDyQfj3aIAAP//B+PdogAAg8m22N2iAAAAXQfj3aIAAABdttjdogAA//8H492i//8Dz17kPZL/////XuQ9kv//g8kH492i//+BbV7kPZL//wBdB+Pdov/////C6cfKAABOvP//x8oAAP/////HygAATrzC6cfKAABhNf//x8oAAGE1wunHygAAYTXC6QAA/79hNf//rkP/v2E1wumuQ/+/YTX//wAA/79hNf//x8r/v2E1wunHyv+/AF0H4wAAmNeBbV7k1jCY1wBdB+NgNpjXgW1e5AAAmNeBbV7kPZKY1wBdB+PdopjXAF222AAA/78AXQfjYDb/vwBdtthgNv+/AF0H4wAA/78AXQfj3aL/vwBdttjdov+/FGjC1wAAhygAXbbYYDaHKBRowteoMocoAF222AAAhygAXbbY3aKHKBRowte0l4coOTbVRQAAtyjBW19JzDa4KDk21UVPQ7cowVtfSQAAuCjBW19JH6S4KDk21UWqybgoOTadOQAA/785NtVFT0P/vzk2nTlPQ/+/OTbVRQAA/785NtVFqsn/vzk2nTmqyf+/gF2+NQAAMNc5Np05T0Mw14BdvjU2NjDXOTadOQAAMNc5Np05qskw14BdvjVfojDXDoDh/w6A4f8OgOH/DoDh/w6A4f8OgOH//38OgP9/DoD/fw6A/38OgP9/DoD/fw6A/38ve/9/L3v/fy97/38ve/9/L3v/fy97/3//f/9//3//f/9//3//f/9//3//f/9//38Ghf9/BoX/fwaF/38Ghf9/BoX/fwaF/395ev9/eXr/f3l6/395ev9/eXr/f3l6/3//f/9//3//f/9//3//f/9//3//f/9//3/Vhf9/1YX/f9WF/3/Vhf9/1YX/f9WF/3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////Vf9q/1X/qv9V/2r/Vf+q/1X/qv9V/6r/3////9/////f////3////9/////f///E9TW1xPU19cT1NfXE9TX1xPU19cT1NfXn1fPq6BXz6ugV8+roFfPq6BXz6ugV8+r/3////9/////f////3////9/////f///PNSF1zvUhdc71IXXO9SG1zvUhtc71IbX") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_wk7qc") + +[sub_resource type="ArrayMesh" id="ArrayMesh_uswgj"] +_surfaces = [{ +"aabb": AABB(-0.984553, -35.921, 0.782753, 0.260146, 36.7557, 0.260051), +"format": 34896613377, +"index_count": 456, +"index_data": PackedByteArray("AAACAFgAAAABAAIAWAACAAMABgAAAFgAWAADAAQABgBYAAUABQBYAAQABQAEAAcACwBZAAgACAAJAAoACABZAAkAWQAMAAkAWQBaAAwAWgAOAAwACwBbAFkAWwBaAFkACwBcAFsACwAWAFwAFgAVAFwAFgAXABUAXAAVABEAXAARAF0AWwBcAF0AXQARABIAWwBeAFoAWwBdAF4AWgBfAA4AXgBfAFoAXwAQAA4AXwAPABAAXQASAGAAXgBdAGAAYAASABQAYAAUABMAXgBgAGEAXgBhAF8AYQBgABMAYQAPAF8AYQATAA0AYQANAA8AGAAZABoAGAAbABkAGQAcABoAGQAeABwAHAAeAB8AHAAfACAAYgAeABkAYgAfAB4AGwBjABkAGwAdAGMAKQBjAB0AGQBjAGQAGQBkAGIAKQAkAGMAJABkAGMAKgAkACkAKgArACQAKwAsACQAKwAtACwALQAuACwAJAAsAC4ALQAvAC4AJAAuAGUAJABlAGQAZQAuADAAZQBmAGQAYgBkAGYAZQAwAGcAZQBnAGYAZwAwADIAMwAyADAAMwA0ADIAMQAyADQAZwAyADEAMQA0ADUAZwAxACEAZwAhAGYAaABmACEAYgBmAGgAaAAfAGIAaAAhACIAaAAjAB8AIgAjAGgAIgAlACMAJgAjACUAJwAlACIAJgAlACgAJwAoACUANgBpADgANgA3AGkAOABpAGoAOABqADsAOwBqAEEAOwBBAEIAagBAAEEANwBrAGkANwA5AGsAPQBrADkAaQA6AGoAagA6AEAAaQBrADoAPQBsAGsAbAA6AGsAPgBsAD0APgA8AGwAbABtADoAbQBAADoAPABtAGwAbQBDAEAAPAA/AG0APwBDAG0APwBEAEMARQBuAEcARQBGAG4ARwBuAG8ARwBvAE8ARgBIAG4ARgBJAEgASgBIAEkAbgBIAE4AbgBOAG8ASgBwAEgAcABOAEgASwBwAEoASwBMAHAATABxAHAAcABxAE4ATABNAHEAbwBOAHIAcQByAE4ATQBzAHEAcQBzAHIATQBQAHMAbwByAHQATwBvAHQATwB0AFEAdAByAFIAcwBSAHIAUQB0AHUAdABSAHUAUQB1AFQAcwB2AFIAUAB2AHMAdQBSAHYAUABTAHYAVAB1AHcAdQB2AHcAdwB2AFMAVAB3AFUAdwBTAFYAVQB3AFYAVQBWAFcA"), +"lods": [0.0325924, PackedByteArray("AAABAAIAAAACAAMAAAADAAQABQAAAAQABgAAAAUABQAEAAcACAAJAAoACAALAAkACwAMAAkACwANAAwADQAOAAwADQAPAA4ADgAPABAACwARAA0ADQARABIADQASABMAEgAUABMACwAVABEACwAWABUAFgAXABUAGAAZABoAGAAbABkAGQAcABoAGwAdABkAGQAeABwAHAAeAB8AGQAfAB4AHAAfACAAGQAdACEAIgAfABkAGQAhACIAIgAjAB8AJAAhAB0AIgAlACMAJgAjACUAJwAlACIAJgAlACgAJwAoACUAKQAkAB0AKgAkACkAKgArACQAKwAsACQAKwAtACwALQAuACwAJAAsAC4ALQAvAC4AJAAuADAAJAAwADEAJAAxACEAMQAwADIAMwAyADAAMwA0ADIAMQAyADQAMQA0ADUANgA3ADgANwA5ADgAOAA5ADoAOAA6ADsAPAA6ADkAPQA8ADkAPgA8AD0APAA/ADoAOwA6AEAAPwBAADoAOwBAAEEAOwBBAEIAPwBDAEAAPwBEAEMARQBGAEcARgBIAEcARgBJAEgASgBIAEkASwBIAEoASwBMAEgATABNAEgARwBIAE4ASABNAE4ARwBOAE8ATQBQAE4ATwBOAFEAUABSAE4AUQBOAFIAUABTAFIAUQBSAFQAVABSAFMAVABTAFUAVQBTAFYAVQBWAFcA")], +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 120, +"vertex_data": PackedByteArray("//8AAJKqAAD//wAAAAAAAHxVAAAAAAAAAAAAAAAAAAAAAAAAkqoAAHxVAAD//wAA//8AAP//AAAAAAAA//8AAN5UiQ7XAQAAAAAtEfwHAAAAAIkO1wEAACf+iQ7XAQAAAABpKZ9dAAB+olQxn10AAAAAaSyfXQAAUTZUMZ9dAAAAAFQxn10AAH6iaSn//wAAfqJpLP//AAB+olQxyMkAAH6iVDH//wAABvgtEf//AAAn/okOMKsAACf+iQ7//wAAAABYQ99bAAAhL7ZHOG8AAAAAtkc4bwAA5jZYQ99bAAAAADZIIJEAAD2kWEPfWwAA0yM2SCCRAAAtLCxL4ncAAAAALEvidwAA6pcJxkpoAADKMgnGSmgAAC0s17/idwAAko+2R6XPAAANIRvEg5kAAAAA17/idwAAAAAJxkpoAAAAABvEg5kAAD2kWEMyyQAAPaRYQ///AACSj7ZH//8AAKltNkjz2gAAqW02SP//AAC3hixLidIAALeGLEv//wAAt4bXv4nSAADqlwnGVs0AAFZlG8S+3QAAt4bXv///AABWZRvE//8AAOqXCcb//wAAAACc0cFtAAD7MJzRwW0AAAAAAdLBbQAAfZKc0cFtAAB9kkjUwW0AAAAASNTBbQAAfZIB0v//AAB9kpzRKM8AAH2SnNH//wAAfZJI1P//AACdyo/WNzUAALBDj9Y3NQAAAACP1jc1AACdyo/WULwAAJ3Kj9b//wAAAAD46jc1AACwQ/jqNzUAAAAAheyDUAAAhK+F7INQAACdyvjqNzUAAJ3K+OpQvAAAncr46v//AACEr4Xs//8AAGXxP+7//wAAZfE/7iQOAAAAAD/uJA4AAFL9Qvj//wAAAABC+CECAAAi8f//WQ4AACLx/////wAAAAD//1kOAAAAAP//W68AAIdQ/////wAAAAD/////AAB8VQAAkqoAANNSLRH8BwAAUTZpKZ9dAAAG+C0R/AcAAAb4LRE8rQAAfqJpKcjJAAB+omkpn10AAFE2aSyfXQAAfqJpLMjJAAB+omksn10AAAo650tATgAAko+2RzhvAABMsOdLQE4AAEyw50uoxAAATLBpv0BOAABMsGm/qMQAAAo6ab9ATgAA+zAB0sFtAAD7MEjUwW0AAH2SAdLBbQAAfZIB0ijPAAB9kkjUKM8AAKg6heyDUAAAnlA/7iQOAACEr4XsacUAAGXxP+5JrwAAUv1C+CECAABS/UL4SKsAAJdUQvghAgAAh1D//1kOAAAi8f//W68AAIdQ//9brwAA") +}, { +"aabb": AABB(-0.984553, -25.1276, 0.904538, 0.1369, 16.7513, 0.138266), +"format": 34896613377, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("AAAAAAAAAADzU///AAAAAAAA//8AAAAA81MAAAAAAAD//wAA//8AAP////9+qgAA//8AAH6qAAD///////8AAA==") +}, { +"aabb": AABB(-0.984553, -35.921, 0.782753, 0.260146, 33.7366, 0.260051), +"format": 34896613377, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAAACAAMAAAAEAAEABAAFAAEABAAGAAUAAAADAAcABwADAAgABwAIAAkACgALAAwACgANAAsADAALAA4ADAAOAA8ADwAOABAADwAQABEADgASABAADQATAAsADQAUABMAFQATABQACwAWAA4ADgAWABIACwATABYAFQAXABMAFwAWABMAGAAXABUAGAAZABcAFwAaABYAGgASABYAGQAaABcAGgAbABIAGQAcABoAHAAbABoAHAAdABsAHgAfACAAHgAhAB8AIAAfACIAIAAiACMAIwAiACQAIwAkACUAIgAmACQAIQAnAB8AIQAoACcAKQAnACgAHwAqACIAIgAqACYAHwAnACoAKQArACcAKwAqACcALAArACkALAAtACsAKwAuACoALgAmACoALQAuACsALgAvACYALQAwAC4AMAAvAC4AMAAxAC8AMgAzADQAMgA1ADMANQA2ADMANQA3ADYAOAA2ADcAOAA5ADYAOgA5ADgAOgA7ADkA"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 60, +"vertex_data": PackedByteArray("//8AAAAAAAAn/tYPMKsAACf+1g/XAQAA3lTWD9cBAAD//wAAkqoAACf+1g///wAA//8AAP//AAB8VQAAAAAAAAAA1g/XAQAAAAAAAAAAAAAAAL41n10AAGlDnTlUNgAAAACdOVQ2AABRNr41n10AAGlD1UVUNgAAAADVRVQ2AADmNl9J31sAAAAAX0nfWwAAPaRfSd9bAADFyZ05VDYAAH6ivjWfXQAAfqK+NcjJAADFydVFVDYAAMXJnTmvvAAAfqK+Nf//AADFyZ05//8AAMXJ1UWvvAAAPaRfSTLJAADFydVF//8AAD2kX0n//wAAAADC10poAAB7NrbYIV0AAAAAttghXQAAyjLC10poAAB7NgfjIV0AAAAAB+MhXQAA+zBe5MFtAAAAAF7kwW0AAH2SXuTBbQAA/qK22CFdAADql8LXSmgAAOqXwtdWzQAA/qIH4yFdAAD+orbYnskAAOqXwtf//wAA/qK22P//AAD+ogfjnskAAH2SXuQozwAA/qIH4///AAB9kl7k//8AAAAAwuk3NQAAsEP//zc1AAAAAP//NzUAALBDwuk3NQAAncr//zc1AACdysLpNzUAAJ3KwulQvAAAncr//1C8AACdysLp//8AAJ3K/////wAA") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ltk4i"] +resource_name = "18_A1_CORRIDOR_A_Cube_007" +_surfaces = [{ +"aabb": AABB(-0.984553, -35.921, 0.782753, 0.260146, 36.7557, 0.260051), +"attribute_data": PackedByteArray("//+M6P//7dJ20O3Ssrjt0rK4jOh20Fzz//9c87K4XPNK0P//srgG/bK4//97////sriQ5+7lct6yuBzkxsdy3rK4ct6yuLDJxcWnxFS4p8Tvx7DJa+awyfvijFLKxoxSxcUG4VS4U+VUuAbhnsJT5VS4FMTyxKvAVLirwJ7CFMRUuB/i2MFj5lS4Y+byxB/isrgl4NjBY+bKxiXgVLhj5rK4NUpJxjVKsrjsSXjhNUp44UhIsrhISLK41+CAy6zZsris2R3xrNl44dfgsris2YDLrNmyuCLdj+ki3R3xrNmyuCjpFc9c87K4XPPa+1zzsri/1Nr7v9SP6Vzz7ftc84/pIt3t+7jUHfFc84/pIt0d8czqHfGs2Y/pXPN44VzzHfFc8x3xzOod8azZeOHX4LK4NUqyuOxJRMY1SmnhNUpp4UhIsrhISPvi9Ozh1Fzz++Jc8+HUCe8v3lzz4dQJ7y/ene3h1FzzsrgUxFPFq8D7whTEsrirwKfgXPMz167up+A/7TPXXPOyuLDJIcanxO3HsMmyuKfEZOawye7ijFLGxoxSsrgc5LK4ct7Ex3Le6OVy3rK4kOd7////srgG/UrQ//+yuP//AOGnxJbeq8CN1xTE7uKMUpbeAlc31e9Tp+CnxC/eAlf74oxS4dTvUy/eq8Az1xTEsrgi3e37uNSyuLjUj+ki3bK4kzWyuF0uDvyTNf/7yiiyuMoosriTNe37kzWyuF0u2vvKKLK4yih20IzouM8G/cb9Bv24zwb9sriQ57K4Bv3Gx5Dnxv0G/e7lkOfGx5Dnxscc5O7lkOfu5RzkxcWnxKfgp8RJxuxJScZISHjh7ElJxtfg/Mgi3RvPuNT8yCLdNtBdLhvPkzVA/10usrhdLhXPyig20F0uQP9dLhXPKOkVz7/U2vso6SHPyihD0F0uZ/9dLkPQXS4mz5M1srhdLmf/XS7t+yXpj+nz64/p8+t44TDtRMZISETG7Elp4exJIcanxADhp8TExxzk6OUc5OjlkOfEx5DnsriQ57jPBv3Ex5Dnxf0G/ejlkOeyuAb9uM8G/cX9Bv0w6tS/AOGnxDHJ1L/H6dS/z8jUv6fgp8TPyNS/x+lSV8/IUlfH6dS/McnUvzDqUlcw6tS/MclSVzDq1L+W3qvAMOpSVzDq1L/PyFJXx+lSV5beAlcw6lJXx+nUvy/eAlfH6VJXL96rwMfp1L8xyVJXMOpSV8fpUlc="), +"format": 34896613399, +"index_count": 456, +"index_data": PackedByteArray("AAACAIwAAAABAAIAjAACAAMABgAAAIwAjAADAAQABgCMAAUABQCMAAQABQAEAAcACwCNAAgACwCOAI0ACACNAAkACAAJAAoAjwCQAJEAjwCSAJAAkwCSAI8AkwCUAJIAlQAOAAwAlQCWAA4AlgAQAA4AlwCWAJUAlgAPABAAlwCYAJYAmAAPAJYAmAANAA8AEQCZABMAEQAUAJkAFACaAJkAFAAVAJoAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKACbACoAKAApAJsAKgCbAJwAKgCcAC0AmwAsAJwAmwCdACwAKQCdAJsAKQArAJ0ALgAvADAALgCeAC8AngAxAC8AngAyADEAMwCfADUAMwA0AJ8ANAA2AJ8ANAA3ADYAfgCgAIAAfgChAKAAoQB/AKAAoQCBAH8AhwCiAIkAhwCjAKIAowCkAKIAowCIAKQApQCmAIsApQCnAKYApwCKAKYApwCoAIoAPACpADgAPACqAKkAOACpADkAOAA5ADoAqQA7ADkAqQCrADsAqgCrAKkAqgA9AKsAgwCsAK0AgwCGAKwArQCsAIUArQCFAK4AggCvALAAggCxAK8AsACvALIAsACyAIQAPgCzALQAPgA/ALMAtACzAEEAtABBAEAAQgC1AEQAQgBGALUARAC1AEMARABDAEUARwBJALYARwBIAEkAtgBJAEoAtgBKAEsATQC3ALgATQBRALcAuAC3AFAATABNALgAuABQALkATAC4AE4ATgC4ALkATgC5AE8AUgBTAFQAUgBVAFMAVgBXAFgAVgBZAFcAWgBbAFwAWgBdAFsAXgBfAGAAXgBhAF8AYgC6AGQAYgBlALoAZAC6ALsAZAC7AGYAvABqAGsAvABpAGoAvQC8AGsAvQBrAGwAvgC8AL0AvgC/ALwAvwBpALwAvwDAAGkAwQBtAMIAwQBvAG0AwwDBAMIAwwDCAMQAcADFAMYAcABxAMUAbgBwAMYAbgDGAMcAYwDIAMkAYwDKAMgAEgDLAMwAEgDNAMsAzgDPANAAzgDRAM8A0gDTANQA0gDVANMA1gB0AHIA1gDXAHQA2ABzANkA2AB2AHMA2gAWABcA2gDbABYAdQDcAN0AdQB3ANwA3gDfAOAA3gDhAN8AeAB8AOIAeAB9AHwA4wBnAOQA4wBoAGcA5QB7AHoA5QB5AHsA"), +"lods": [0.0325924, PackedByteArray("AAABAAIAAAACAAMAAAADAAQABQAAAAQABgAAAAUABQAEAAcACAAJAAoACAALAAkACwAMAAkACwANAAwADQAOAAwADQAPAA4ADgAPABAAEQASABMAEQAUABIAFAAVABIAEgAVABYAEgAWABcAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKAApACoAKQArACoAKgArACwAKgAsAC0ALgAvADAALgAxAC8ALgAyADEAMwA0ADUANAA2ADUANAA3ADYAOAA5ADoAOAA7ADkAPAA7ADgAPAA9ADsAPgA/AEAAQAA/AEEAQgBDAEQARABDAEUAQgBGAEMARwBIAEkARwBJAEoARwBKAEsATABNAE4ATgBNAE8ATQBQAE8ATQBRAFAAUgBTAFQAUgBVAFMAVgBXAFgAVgBZAFcAWgBbAFwAWgBdAFsAXgBfAGAAXgBhAF8AYgBjAGQAYgBlAGMAZABjAGYAYwBnAGYAYwBoAGcAaQBqAGsAbABpAGsAbABtAGkAbgBtAGwAbgBvAG0AbgBwAG8AcABxAG8AcgBzAHQAdQBzAHIAdQB2AHMAdQB3AHYAeAB5AHoAegB5AHsAeAB8AHkAeAB9AHwAfgB/AIAAfgCBAH8AggCDAIQAgwCFAIQAgwCGAIUAhwCIAIkAiQCIAIoAiQCKAIsA")], +"material": SubResource("StandardMaterial3D_lsgue"), +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(2.22908, 4.9004, 0, 0), +"vertex_count": 230, +"vertex_data": PackedByteArray("//8AAJKq/z///wAAAAD/P3xVAAAAAP8/AAAAAAAA/z8AAAAAkqr/P3xVAAD///8///8AAP///z8AAAAA////P95UiQ7XAawAAAAtEfwHrAAAAIkO1wGsACf+iQ7XAawAAABpKZ9dAAB+olQxn10AAAAAaSyfXQAAUTZUMZ9dAAAAAFQxn10AAAAAWEPfW0YBIS+2RzhvRAIAALZHOG9GAeY2WEPfW0YBPaRYQ99bRgHqlwnGSmghAcoyCcZKaCEBIS+2Rzhvs+0AADZIIJGz7QAAtkc4b7Pt0yM2SCCRs+0AADZIIJF0Ai0sLEvid3QCAAAsS+J3dALTIzZIIJF0AgAA17/id7n9DSEbxIOZuf0AABvEg5m5/S0s17/id7n9AAAJxkpoRwcNIRvEg5lHB8oyCcZKaEcHAAAbxIOZRwcAAJzRwW0AAPswnNHBbQAAAAAB0sFtAAB9kpzRwW0AAH2SSNTBbQAAAABI1MFtAAAAAEjUwW0UB7BDj9Y3NRQHAACP1jc1FAedyo/WNzUUB32SSNTBbRQHAAD46jc19PqwQ/jqNzX0+gAAheyDUPT6hK+F7INQ9PqdyvjqNzX0+gAA//9br/+/h1D//////78AAP//////vyLx//////+/AAD//1kO/78i8f//WQ7/v4Svhez//5IwZfE/7v//kzCEr4Xsg1CTMGXxP+4kDpMwncr46v//gdKEr4Xsg1CA0p3K+OpQvIDSncr46jc1gNKEr4Xs//+A0n2SSNT//5kuncqP1v//mi6dyo/WULyaLp3Kj9Y3NZoufZJI1MFtmi59kpzR////v32SAdL///+/fZKc0SjP/799kpzRwW3/v32SSNTBbf+/fZJI1P///7/qlwnGVs3XLlZlG8T//9Yu6pcJxv//1y5WZRvEvt3WLreG17///wrUVmUbxL7dCtS3hte/idIK1FZlG8T//wrUqW02SP//CMC3hixLidIIwKltNkjz2gjAt4YsS///CMCSj7ZH//+vy6ltNkjz2q7Lko+2R6XPsMupbTZI//+uyz2kWEP//wLAko+2R6XPB8A9pFhDMskCwJKPtkf//wLAPaRYQ99bAsDqlwnGSmgBwOqXCcZWzQHAfqJpLP///79+olQx////v36iVDHIyf+/fqJUMZ9d/79+omkp//8AwCf+iQ7XAf+/BvgtEf//AMAn/okOMKv/vyf+iQ7///+/IS+2RzhvAAAtLCxL4ndrDdMjNkggkQAAyjIJxkpoCwAtLNe/4neWBg0hG8SDmQsAko+2R6XPHI23hte/idL6jOqXCcZWzfqMVmUbxL7d+oy3hixLidIcjaltNkjz2hyNAACF7INQ0gpl8T/uJA7SCgAAP+4kDtIKhK+F7INQ0gpl8T/u////v1L9Qvj///+/ZfE/7iQO/78i8f//WQ7/vyLx//////+/AAA/7iQOWABl8T/uJA5YAAAAQvghAlgAIvH//1kOdAAAAP//WQ50AHxVAACSqv8/01ItEfwHrAAG+C0R/AesANNSLRH8BwQBAABpKZ9dBAEAAC0R/AcEAVE2aSmfXQQBBvgtEfwHBAF+omkpn10EAVE2aSmfXQAAUTZpLJ9dAAB+omkpn10AAH6iaSyfXQAAIS+2RzhvRgGSj7ZHOG9GAfswAdLBbQAA+zBI1MFtAAB9kgHSwW0AAPswSNTBbRQHqDqF7INQ9PqeUD/uJA7SCqg6heyDUNIKl1RC+CECWACeUD/uJA5YAFL9QvghAlgAAABC+CECdACHUP//WQ50AJdUQvghAnQAUv1C+CECdACHUP//W6//v4dQ//9ZDv+/IvH//1uv/78i8f//W6//v1L9QvhIq/+/Uv1C+CEC/79S/UL4SKv/v2XxP+5Jr/+/Uv1C+P///79S/UL4IQL/v2XxP+5Jr5MwhK+F7GnFkjCEr4XsacWA0n2SSNQoz5oufZJI1CjP/799kgHSKM//v32SAdLBbf+/ko+2R6XPAsCSj7ZHOG8CwH6iaSzIyf+/fqJpLJ9d/79+omkpn13/v36iaSnIyf+/fqJpKf///78G+C0RPK0AwH6iaSnIyQDABvgtEfwHAMB+omkpn10AwAb4LRH///+/BvgtETyt/78G+C0R/Af/v0yw50tATgfAko+2RzhvB8BMsOdLqMQHwEyw50tATkQCCjrnS0BORAKSj7ZHOG9EAgo650tATgAATLBpv0BOAAAKOmm/QE4AAEyw50tATgAATLDnS6jE/79MsGm/QE7/v0yw50tATv+/TLBpv6jE/78KOudLQE4AAC0sLEvidwAACjppv0BOmAYKOudLQE53DQo6ab9ATiEBTLBpv0BOIQEtLNe/4ncMAAo6ab9ATgwATLDnS6jEhZq3hte/idJJkUywab+oxEGRt4YsS4nSiJpMsOdLqMQcjUywab+oxAHATLBpv0BOAcBMsGm/qMT6jAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////fwAA/3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/tiaQMrcmkDK3JpAytyaQMjyuHlc8rh5XPK4eVzyuHlc8rh5XICi8LyEovC8hKLwvISi8LyEovC//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD3JxEw9ScRMPcnETD1JxEwQKwgVkCsIFZArCBWQKwgVmJ8OgdifDoHYnw6B2J8Oge8uGBcvLhfXL24YVy8uF5cJYQTAqV8swYlhBMCJYQTAiWEEwI9g58BPYOfAf9/AAD/fwAA/38AAP9/AAAeg48BEIIIAR6DjwEQgggBEIIIAZ01/39pQJGSnTX/f/b/skoyO5eJ9f+ySg6ACQC0fzcAy381AMt/NAAUgAgADYAJAAAA/38AAP9/AAD/fwAA/393fxABZ4G0AHd/EAFngbMAZ4GzAAAA/38AAP9/AAD/f////3////9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/f////38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////39ngbMAZ4G0AGeBswB3fxABd38QAXd/EAF3fxABtyaQMrYmkDI8rh5XICi8L/9/AAD/fwAA/38AACWEEwIlhBMC/38AAP9/AAD/fwAA/38AAP9/AAAeg48BHoOPAR6DjwEeg48BEIIIARCCCAEQgggBpXyzBqV8swalfLMGAAD/fwAA/38AAP9/////f////3////9/////f/9/AAD/fwAA/38AAP9/AACdNf9//f+dtTM7molyQKCS////f////3/3/7NK9/+zShiMk1bwiP0/64jXPxiMllYUgAgAPYOfAT2DnwG4fzYA") +}, { +"aabb": AABB(-0.984553, -25.1276, 0.904538, 0.1369, 16.7513, 0.138266), +"attribute_data": PackedByteArray("/+f//0z/3i7/594uTP///63o/////94u/////63o3i4="), +"format": 34896613399, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"material": SubResource("StandardMaterial3D_btu5w"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(1.20736, 2.4759, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("AAAAAAAAAADzU///AAAAAAAA//8AAAAA81MAAAAAAAD//wAA////v/////9+qv+///8AAH6q/7//////////v////3////9/////f////3//fwAA/38AAP9/AAD/fwAA") +}, { +"aabb": AABB(-0.984553, -35.921, 0.782753, 0.260146, 33.7366, 0.260051), +"attribute_data": PackedByteArray("msj//4utffFPyH3xpK3//yigffEooP//msj//4utffGkrf//T8h98SigffEooP//Onhcwk6ODts6eA7bAIpcwna6DtuNrVzCH4J1rL+WEIEfghCBv5Z1rADAEIEAwHWsOngO2zGKdsM6eHbDTo4O2yCudsN2ug7bKKBA1b2o/9MooP/TJ6hA1eW5/9MluEDVKKAjV72oFlEooBZRvagjV+W5FlHluSNXKKD/096n3tUooN7Vvaj/00m33tXluf/TjN9UZ1rqH1qM3x9aWupUZ/f/H1r3/1RnjN9UZ13qH1pd6lRnjN8fWv//H1r//1Rn5blJ5km30ODluTHgSbdJ5km33tXluf/TKKAjV7uoFlG7qCNXKKAWUeG5FlHhuSNXJbhJ5uW5MeAluJzg5blJ5uW5/9MluEDVi7k0bAWQj46LuW2WBZA0bB+Cday9lhCBvZZ1rB+CEIH5vxCB+b91rI2tZVx2up6Gja1ifna6ZVx2ug7bja1cwou5bZYFkEXTi7nd6gWQj44="), +"format": 34896613399, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAAADAAEAAwAEAAEAAwAFAAQABgAHAAgABgAJAAcACAAHAAoACAAKAAsADAANAA4ADAAPAA0ADwAQAA0ADwARABAAEgATABQAEgAVABMAFQAWABMAFQAXABYAGAAZABoAGAAbABkAGwAcABkAGwAdABwAHgAfACAAHgAhAB8AIQAiAB8AIQAjACIAJAAlACYAJAAnACUAJwAoACUAJwApACgAKgArACwAKgAtACsALQAuACsALQAvAC4AMAAxADIAMAAzADEAMwA0ADEAMwA1ADQANgA3ADgANgA5ADcAOAA3ADoAOAA6ADsAPAA9AD4APAA/AD0APgA9AEAAPgBAAEEAQgBDAEQAQgBFAEMARABDAEYARABGAEcASABJAEoASABLAEkASgBJAEwASgBMAE0ATgBPAFAATgBRAE8AUgBTAFQAUgBVAFMAVABTAFYAVABWAFcAWABZAFoAWABbAFkAWgBZAFwAWgBcAF0AXgBfAGAAXgBhAF8A"), +"material": SubResource("StandardMaterial3D_04fvv"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(3.92971, 5.52666, 0, 0), +"vertex_count": 98, +"vertex_data": PackedByteArray("//8AAAAA/78n/tYPMKv/vyf+1g/XAf+///8AAJKq/78n/tYP////v///AAD///+///8AAAAACADeVNYP1wEIAHxVAAAAAAgAJ/7WD9cBCAAAANYP1wEIAAAAAAAAAAgAAAC+NZ9d0PxpQ505VDbQ/AAAnTlUNtD8UTa+NZ9d0PzFyZ05VDbQ/H6ivjWfXdD8AACdOVQ2AABpQ9VFVDYAAAAA1UVUNgAAaUOdOVQ2AADFydVFVDYAAMXJnTlUNgAAAADVRVQ2VAPmNl9J31tUAwAAX0nfW1QDaUPVRVQ2VAM9pF9J31tUA8XJ1UVUNlQDAADC10porAN7NrbYIV2sAwAAttghXawDyjLC10porAP+orbYIV2sA+qXwtdKaKwDAAC22CFdAAB7NgfjIV0AAAAAB+MhXQAAeza22CFdAAD+ogfjIV0AAP6ittghXQAAAAAH4yFdG/z7MF7kwW0b/AAAXuTBbRv8ezYH4yFdG/x9kl7kwW0b/P6iB+MhXRv8AADC6Tc1AACwQ///NzUAAAAA//83NQAAsEPC6Tc1AACdyv//NzUAAJ3Kwuk3NQAAncrC6f///7+dyv//ULz/v53KwulQvP+/ncr//////7+dyv//NzX/v53Kwuk3Nf+//qIH4///I9N9kl7kKM8i0/6iB+OeySLTfZJe5P//ItN9kl7kwW0i0/6iB+MhXSLT/qK22P///7/+ogfjnsn/v/6ittieyf+//qIH4////7/+ogfjIV3/v/6ittghXf+/6pfC1///vCz+orbYnsm9LOqXwtdWzb0s/qK22P//vSz+orbYIV29LOqXwtdKaL0sxcnVRf//jiw9pF9JMsmOLMXJ1UWvvI4sPaRfSf//jizFyZ05////v8XJ1UWvvP+/xcmdOa+8/7/FydVF////v8XJ1UVUNv+/xcmdOVQ2/79+or41//+E08XJnTmvvITTfqK+NcjJhNPFyZ05//+E08XJnTlUNoTTfqK+NZ9dhNPFydVFr7yPLD2kX0nfW48sxcnVRVQ2jyw9pF9JMsmPLByADgAcgA4AHIAOAByADgAcgA4AHIAOAP///3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/7//3/+//9/////f/7//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAGittFZorbRWaK20VmittFZorbRWaK20Vv9/AAD/fwAA/38AAP9/AAD/fwAA/38AAF4pQC1fKUAtXylALV8pQC1fKUAtXylALQStglYErYJWBK2CVgStglb/fwAA/38AAP9/AAD/fwAA/38AAP9/AACJKessiinqLIop6iyKKeosiinqLIop6iwFrYJWBa2CVgWtglYFrYJW") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_uswgj") + +[sub_resource type="ArrayMesh" id="ArrayMesh_etli6"] +_surfaces = [{ +"aabb": AABB(0.755518, -35.921, 0.782753, 0.260146, 36.7557, 0.260051), +"format": 34896613377, +"index_count": 456, +"index_data": PackedByteArray("AAABAAIAAABYAAEAWAAGAAEAAwBYAAAAWAAFAAYAAwAEAFgABAAFAFgABAAHAAUACABZAFoACAAJAFkACQAKAFkACQALAAoAWQAKAAwAWQAMAFsAWgBZAFsAWwAMAA0ACABaAFwACABcABYAFgBcABUAFgAVABcAXAAUABUAXABdABQAWgBdAFwAXQATABQAWgBbAF4AWgBeAF0AXQBfABMAXgBfAF0AXwASABMAXwARABIAYAARAF8AXgBgAF8AYAAQABEAYAAPABAAXgBhAGAAYABhAA8AXgBbAGEAYQAOAA8AWwANAGEAYQANAA4AGAAZABoAGAAbABkAGQAbAB0AGgAZAGIAGgBiABwAJQAcAGIAGQAdAB8AJQBiACQAJgAlACQAJgAkACcAHQAgAB8AHQAhACAAYwAZAB8AYwAfACAAGQBkAGIAGQBjAGQAJABiAGQAJwAkACwAJwAsAC0ALQAsAC4AJAAuACwALQAuAC8AJABlAC4AJABkAGUAZQAwAC4AZQBkAGYAYwBmAGQAZQBnADAAZQBmAGcAZwAyADAAMwAwADIAMwAyADQAMQA0ADIAZwAxADIAMQA1ADQAZwAeADEAZwBmAB4AaAAeAGYAYwBoAGYAaABjACAAaAAiAB4AaAAgACMAIgBoACMAIgAjACgAKQAoACMAKgAiACgAKQArACgAKgAoACsANgBpADgANgA3AGkAOABpAGoAOABqAD4AQwA+AGoANwBrAGkANwA5AGsAOQA7AGsAOQA6ADsAawA7ADwAaQBrAD0AawA8AD0AaQA9AGoAQwBqAGwAbABqAD0ARABDAGwARABsAEIAbAA9AG0AbQA9ADwAQgBsAG0AbQA8AEAAQgBtAD8APwBtAEAAPwBAAEEARQBuAEcARQBGAG4ARwBuAEgARwBIAEkASgBJAEgARgBvAG4ARgBOAG8AbgBNAEgAbgBvAE0ASgBIAHAAcABIAE0ATABKAHAATABwAEsASwBwAHEAcABNAHEASwBxAE8AbwByAE0AcQBNAHIATgBzAG8AbwBzAHIATgBQAHMATwBxAHQAcQByAHQATwB0AFEAcwBSAHIAdAByAFIAUAB1AHMAcwB1AFIAUABTAHUAdABSAHYAUQB0AHYAdQB2AFIAUQB2AFQAUwB3AHUAdQB3AHYAdwBUAHYAUwBWAHcAdwBVAFQAVgBVAHcAVgBXAFUA"), +"lods": [0.0638598, PackedByteArray("AAABAAIAAwABAAAAAwAEAAEABAAFAAEAAQAFAAYABAAHAAUACAAJAAoACQALAAoACgAMAAgACAAMAA0ACAANAA4ACAAOAA8ACAAPABAACAAQABEACAARABIACAASABMACAATABQAFQAIABQACAAVABYAFgAVABcAGAAZABoAGAAbABkAGgAZABwAGQAbAB0AGQAeABwAGQAdAB8AHQAgAB8AGQAfACAAHQAhACAAIgAZACAAGQAiAB4AIgAgACMAJAAcAB4AJQAcACQAJgAlACQAJgAkACcAIgAjACgAKQAoACMAKgAiACgAKQArACgAKgAoACsAJwAkACwAJwAsAC0ALQAsAC4AJAAuACwALQAuAC8AJAAwAC4AJAAxADAAJAAeADEAMQAyADAAMwAwADIAMwAyADQAMQA0ADIAMQA1ADQANgA3ADgANwA5ADgAOQA6ADsAOQA7ADwAOAA5AD0AOQA8AD0AOAA9AD4APwA9ADwAPwA8AEAAPwBAAEEAQgA9AD8AQgA+AD0AQwA+AEIARABDAEIARQBGAEcARwBGAEgARwBIAEkASgBJAEgASgBIAEsATABKAEsARgBNAEgASwBIAE0ARgBOAE0ASwBNAE8ATgBQAE0ATwBNAFEAUABSAE0AUQBNAFIAUABTAFIAUQBSAFQAUwBUAFIAUwBVAFQAVgBVAFMAVgBXAFUA")], +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 120, +"vertex_data": PackedByteArray("AAAAAJKqAACCqgAAAAAAAAAAAAAAAAAAAAAAAP//AACCqgAA//8AAP//AACSqgAA//8AAAAAAAD//wAA//8AANcBiQ7XAQAAIKuJDtcBAAD//y0R/AcAAP//iQ7XAQAA//9pKZ9dAAD//2ksn10AAP//VDGfXQAArclUMZ9dAACAXVQxn10AAIBdVDHIyQAAgF1UMf//AACAXWks//8AAIBdaSn//wAA+ActEf//AADXAYkOMKsAANcBiQ7//wAA//9YQ99bAADd0LZHOG8AABjJWEPfWwAA//+2RzhvAADBW1hD31sAAP//NkggkQAAFGgJxkpoAAAr3DZIIJEAANHTLEvidwAA//8sS+J3AAA0zQnGSmgAANHT17/idwAAbHC2R6XPAADBW1hDMskAAMFbWEP//wAAbHC2R///AADx3hvEg5kAAP//17/idwAA//8JxkpoAAD//xvEg5kAAFWSNkjz2gAAVZI2SP//AABHeSxLidIAAEd5LEv//wAAR3nXv4nSAAAUaAnGVs0AAKiaG8S+3QAAR3nXv///AAComhvE//8AABRoCcb//wAA//+c0cFtAAD//wHSwW0AAAPPnNHBbQAA//9I1MFtAAD//4/WNzUAAE68j9Y3NQAAYTWP1jc1AACBbUjUwW0AAIFtnNHBbQAAgW1I1P//AABhNY/WULwAAGE1j9b//wAAgW0B0v//AACBbZzRKM8AAIFtnNH//wAA///46jc1AAD//4Xsg1AAAE68+Oo3NQAAelCF7INQAABhNfjqNzUAAGE1+OpQvAAAelCF7P//AABhNfjq//8AAJkOP+4kDgAA//8/7iQOAACZDj/u//8AAP//QvghAgAArAJC+P//AADcDv//WQ4AAP////9ZDgAA3A7/////AAB3r/////8AAP////9brwAA////////AACCqgAAkqoAACutLRH8BwAA+ActEfwHAACtyWkpn10AAPgHLRE8rQAAgF1pKcjJAACAXWkpn10AAIBdaSzIyQAAgF1pLJ9dAACtyWksn10AAGxwtkc4bwAA9MXnS0BOAACyT+dLQE4AALJP50uoxAAAsk9pv0BOAACyT2m/qMQAAPTFab9ATgAAA88B0sFtAACBbQHSwW0AAAPPSNTBbQAAgW0B0ijPAACBbUjUKM8AAFbFheyDUAAAYK8/7iQOAAB6UIXsacUAAJkOP+5JrwAArAJC+CECAABnq0L4IQIAAKwCQvhIqwAAd6///1kOAADcDv//W68AAHev//9brwAA") +}, { +"aabb": AABB(0.878764, -25.1276, 0.904538, 0.1369, 16.7513, 0.138266), +"format": 34896613377, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("//8AAAAAAAALrP//AAAAAAusAAAAAAAA/////wAAAAAAAAAA//8AAAAA//9+qgAAAAD/////AAAAAAAAfqoAAA==") +}, { +"aabb": AABB(0.755518, -35.921, 0.782753, 0.260146, 33.7366, 0.260051), +"format": 34896613377, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAgABAAMAAgADAAQAAAAFAAEAAAAGAAUAAAAHAAYABwAIAAYABwAJAAgACgALAAwACgANAAsADAALAA4ADAAOAA8AEAAPAA4ADQARAAsADQASABEAEgATABEAEgAUABMAEQATABUACwARABYAEQAVABYACwAWAA4AEAAOABcAFwAOABYAGAAQABcAGAAXABkAFwAWABoAGgAWABUAGQAXABoAGgAVABsAGQAaABwAHAAaABsAHAAbAB0AHgAfACAAHgAhAB8AIAAfACIAIAAiACMAJAAjACIAIQAlAB8AIQAmACUAJgAnACUAJgAoACcAJQAnACkAHwAlACoAJQApACoAHwAqACIAJAAiACsAKwAiACoALAAkACsALAArAC0AKwAqAC4ALgAqACkALQArAC4ALgApAC8ALQAuADAAMAAuAC8AMAAvADEAMgAzADQAMgA1ADMANAAzADYANAA2ADcAOAA3ADYAOAA2ADkAOgA4ADkAOgA5ADsA"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 60, +"vertex_data": PackedByteArray("AAAAAAAAAADXAdYPMKsAAAAAAACSqgAA1wHWD///AAAAAAAA//8AANcB1g/XAQAAIKvWD9cBAACCqgAAAAAAAP//1g/XAQAA//8AAAAAAAD//741n10AAJW8nTlUNgAArcm+NZ9dAAD//505VDYAADk2nTlUNgAAgF2+NZ9dAACAXb41yMkAAJW81UVUNgAA///VRVQ2AAAYyV9J31sAAP//X0nfWwAAwVtfSd9bAAA5NtVFVDYAADk2nTmvvAAAgF2+Nf//AAA5Np05//8AADk21UWvvAAAwVtfSTLJAAA5NtVF//8AAMFbX0n//wAA///C10poAACDybbYIV0AADTNwtdKaAAA//+22CFdAAAAXbbYIV0AABRowtdKaAAAFGjC11bNAACDyQfjIV0AAP//B+MhXQAAA89e5MFtAAD//17kwW0AAIFtXuTBbQAAAF0H4yFdAAAAXbbYnskAABRowtf//wAAAF222P//AAAAXQfjnskAAIFtXuQozwAAAF0H4///AACBbV7k//8AAP//wuk3NQAATrz//zc1AABOvMLpNzUAAP////83NQAAYTX//zc1AABhNcLpNzUAAGE1wulQvAAAYTX//1C8AABhNcLp//8AAGE1/////wAA") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_pjk1a"] +resource_name = "18_A1_CORRIDOR_A_Cube_008" +_surfaces = [{ +"aabb": AABB(0.755518, -35.921, 0.782753, 0.260146, 36.7557, 0.260051), +"attribute_data": PackedByteArray("//+M6HbQ7dL//+3S//9c83bQXPOyuIzosrjt0rK4XPN7////StD//7K4Bv2yuP//sriQ57K4HOSyuHLexsdy3u7lct6yuLDJxcWnxO/HsMlUuKfEa+awyfvijFLKxoxSxcUG4VS4U+WewlPlVLgG4VS4FMTyxKvAnsIUxFS4q8BUuB/i2MFj5vLEH+JUuGPmsrgl4NjBY+ZUuGPmysYl4LK4NUqyuOxJScY1SrK4SEh44UhIeOE1SrK41+CyuKzZgMus2R3xrNl44dfgsris2bK4It2Ay6zZj+ki3R3xrNmyuCjpFc9c87K4v9SyuFzz2vtc89r7v9SyuJM1DvyTNbK4XS7/+8oosrjKKI/pXPPt+7jU7ftc84/pIt0d8VzzHfHM6o/pXPOP6SLdHfGs2XjhXPMd8czqHfFc8x3xrNl44dfgsrg1SkTGNUqyuOxJaeE1SmnhSEiyuEhI++L07OHUXPPh1Anv++Jc8y/eXPPh1Anv4dRc8y/ene2yuBTEU8WrwLK4q8D7whTEp+Bc8zPXru4z11zzp+A/7bK4sMkhxqfEsrinxO3HsMlk5rDJ7uKMUsbGjFJ7////srgc5LK4kOeyuHLexMdy3ujlct6yuAb9StD//7K4//8A4afEjdcUxJbeq8Du4oxSlt4CVzfV71On4KfEL94CVy/eq8Az1xTE++KMUuHU71OyuCLd7fu41I/pIt2yuLjUsriTNbK4XS7t+5M12vvKKLK4yih20IzouM8G/cb9Bv24zwb9sriQ58bHkOeyuAb9xv0G/e7lkOfGx5Dnxscc5O7lkOfu5RzkxcWnxKfgp8RJxuxJeOHsSUnGSEhJxtfg/Mgi3RvPuNT8yCLdNtBdLhvPkzVA/10usrhdLhXPyig20F0uQP9dLhXPKOkVz7/U2vso6bK4XS4hz8ooQ9BdLmf/XS5D0F0uJs+TNWf/XS7t+yXpj+nz64/p8+t44TDtRMZISETG7Elp4exJAOGnxMTHHOTEx5Dn6OWQ5+jlHOS4zwb9sriQ57K4Bv3Ex5Dnxf0G/ejlkOe4zwb9xf0G/SHGp8Qw6tS/McnUvwDhp8TH6dS/p+CnxM/I1L/PyNS/x+lSV8fp1L/PyFJXMcnUvzDqUlcxyVJXMOrUvzDq1L8w6lJXlt6rwJbeAlcw6tS/z8hSV8fpUlcw6lJXx+nUv8fpUlcv3qvAx+nUvzHJUlcw6lJXx+lSVy/eAlc="), +"format": 34896613399, +"index_count": 456, +"index_data": PackedByteArray("AAABAAIAAACMAAEAjAAGAAEAAwCMAAAAjAAFAAYAAwAEAIwABAAFAIwABAAHAAUACACNAI4ACAAJAI0ACQAKAI0ACQALAAoAjwCQAJEAjwCSAJAAkwCPAJEAkwCRAJQAlQANAJYAlQAMAA0AlgANAA4AlwCVAJYAlgAOAA8AlwCWAJgAmACWAA8AmAAPABAAEQCZABMAEQAUAJkAEwCZAJoAEwCaABUAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKACbACoAKAApAJsAKgCbAJwAKgCcAC0AmwAsAJwAmwCdACwAKQCdAJsAKQArAJ0ALgAwAJ4ALgAvADAAngAwADEAngAxADIAMwCfADUAMwA0AJ8ANQCfADYANQA2ADcAgwCgAKEAgwCGAKAAoQCgAIQAoQCEAIUAhwCiAKMAhwCIAKIAowCiAKQAowCkAIkApQCmAKcApQCLAKYApwCmAIoApwCKAKgAOgCpAKoAOgA4AKkAqgCpAKsAqgCrAD0AqQA8AKsAqQA5ADwAOAA5AKkAOAA7ADkArACtAEIArACuAK0ArgBBAK0ArgCvAEEAPgCwAEAAPgCxALAAsQCyALAAsQA/ALIAQwCzAEUAQwC0ALMAtABEALMAtABGAEQARwC1AEkARwBIALUASABKALUASABLAEoATABNAE4ATAC2AE0AtgBPAE0AtgBQAE8AUwC3AFYAUwC4ALcAuABVALcAUQC4AFMAuAC5AFUAUQBSALgAUgC5ALgAUgBUALkAVwBYAFkAVwBaAFgAWwBcAF0AWwBeAFwAXwBgAGEAXwBiAGAAYwBkAGUAYwBmAGQAZwBoAGkAZwBqAGgAagC6AGgAagBrALoAuwBxAG8AuwByAHEAvAC7AG8AvABvAHAAvQC7ALwAvQC+ALsAvgByALsAvgBzAHIAvwDAAMEAvwDCAMAAwwDCAL8AwwDEAMIAdQB0AHYAdQDFAHQAbgDFAHUAbgDGAMUAxwDIAMkAxwDKAMgAEgDLAMwAEgDNAMsAzgDPANAAzgDRAM8A0gDTANQA0gDVANMA1gB4AHkA1gB3AHgA1wDYANkA1wDaANgA2wAWANwA2wAXABYAegB7AHwAegDdAHsA3gB+AH8A3gDfAH4AfQDgAIAAfQDhAOAA4gBsAG0A4gDjAGwA5ACCAOUA5ACBAIIA"), +"lods": [0.0638598, PackedByteArray("AAABAAIAAwABAAAAAwAEAAEABAAFAAEAAQAFAAYABAAHAAUACAAJAAoACQALAAoACgAMAAgACAAMAA0ACAANAA4ACAAOAA8ACAAPABAAEQASABMAEQAUABIAEwASABUAEgAWABUAEgAXABYAGAAZABoAGAAbABkAHAAdAB4AHAAfAB0AIAAhACIAIAAjACEAJAAlACYAJAAnACUAKAApACoAKQArACoAKgArACwAKgAsAC0ALgAvADAALgAwADEALgAxADIAMwA0ADUANQA0ADYANQA2ADcAOAA5ADoAOAA7ADkAOgA5ADwAOgA8AD0APgA/AEAAQAA/AEEAQABBAEIAQwBEAEUAQwBGAEQARwBIAEkASABKAEkASABLAEoATABNAE4ATABPAE0ATABQAE8AUQBSAFMAUgBUAFMAUwBUAFUAUwBVAFYAVwBYAFkAVwBaAFgAWwBcAF0AWwBeAFwAXwBgAGEAXwBiAGAAYwBkAGUAYwBmAGQAZwBoAGkAZwBqAGgAagBrAGgAaABrAGwAaABsAG0AbgBvAHAAbgBxAG8AbgByAHEAbgBzAHIAdABuAHAAbgB0AHUAdQB0AHYAdwB4AHkAegB3AHkAegB5AHsAegB7AHwAfQB+AH8AfQB/AIAAfQCBAH4AgQCCAH4AgwCEAIUAgwCGAIQAhwCIAIkAiACKAIkAiACLAIoA")], +"material": SubResource("StandardMaterial3D_lsgue"), +"name": "Material.014", +"primitive": 3, +"uv_scale": Vector4(2.22908, 4.9004, 0, 0), +"vertex_count": 230, +"vertex_data": PackedByteArray("AAAAAJKq//+CqgAAAAD//wAAAAAAAP//AAAAAP////+CqgAA////////AACSqv////8AAAAA/////wAA/////9cBiQ7XAf//IKuJDtcB/////y0R/Af/////iQ7XAf////9pKZ9d/////2ksn13/////VDGfXf//rclUMZ9d//+AXVQxn13/////WEPfW///3dC2Rzhv//8YyVhD31v/////tkc4b///wVtYQ99b//8UaAnGSmj//zTNCcZKaP//3dC2RzhvAAD//zZIIJEAACvcNkggkQAA//+2RzhvAAD//zZIIJH//9HTLEvid///K9w2SCCR/////yxL4nf/////17/idwAA8d4bxIOZAADR09e/4ncAAP//G8SDmQAA//8Jxkpo///x3hvEg5n/////G8SDmf//NM0Jxkpo/////5zRwW3/////AdLBbf//A8+c0cFt/////0jUwW3//4FtSNTBbf//gW2c0cFt/////0jUwW3/////j9Y3Nf//TryP1jc1//9hNY/WNzX//4FtSNTBbf/////46jc1AAD//4Xsg1AAAE68+Oo3NQAAelCF7INQAABhNfjqNzUAAP////9brwAAd6//////AAD/////WQ4AAP///////wAA3A7/////AADcDv//WQ4AAJkOP+7//z0AmQ4/7iQOPQCsAkL4//8+ANwO//9ZDlEA3A7/////UQB6UIXs///I25kOP+4kDsnbmQ4/7v//ydt6UIXsg1DJ22E1+Or//7gnYTX46lC8uCd6UIXs//+4J3pQheyDULgnYTX46jc1uCeBbUjU//9/2WE1j9ZQvIDZYTWP1v//gNlhNY/WNzWA2YFtSNTBbYDZgW2c0f//AACBbZzRKM8AAIFtAdL//wAAgW2c0cFtAACBbUjUwW0AAIFtSNT//wAAFGgJxlbNxdmomhvE///E2aiaG8S+3cTZFGgJxv//xdlHede///9aKaiaG8S+3VopqJobxP//WilHede/idJaKVWSNkj//7kBR3ksS4nSuQFHeSxL//+5AVWSNkjz2rkBbHC2R///bB9VkjZI89prH1WSNkj//2ofbHC2R6XPbR/BW1hD///3AGxwtkelz/cAbHC2R///9wDBW1hDMsn3AMFbWEPfW/cAFGgJxkpovwAUaAnGVs2/ANcBiQ7XAXgAgF1pLP//AACAXWkp//8AAIBdVDH//wAAgF1UMcjJAACAXVQxn10AAPgHLRH//3gA1wGJDjCreADXAYkO//94AN3Qtkc4bxrNK9w2SCCRGs3R0yxL4ncazTTNCcZKaITN0dPXv+J3hM3x3hvEg5mEzWxwtkelzwMAR3nXv4nSKQtHeSxLidLbFlWSNkjz2gMAFGgJxlbNAAComhvEvt0AAP//heyDUP//mQ4/7iQO//96UIXsg1D/////P+4kDv////8/7iQO/////0L4IQL//5kOP+4kDv//3A7//1kO////////WQ7//4KqAACSqv//K60tEfwH///4By0R/Af//yutLRH8B/////9pKZ9d//+tyWkpn13/////LRH8B///+ActEfwH//+AXWkpn13//63JaSmfXf//rclpLJ9d//+AXWkpn13//4BdaSyfXf//3dC2Rzhv//9scLZHOG///wPPAdLBbf//gW0B0sFt//8Dz0jUwW3//wPPSNTBbf//VsWF7INQAABgrz/uJA7//1bFheyDUP//Z6tC+CEC//9grz/uJA7//6wCQvghAv////9C+CEC//93r///WQ7//2erQvghAv//rAJC+CEC//93r///W68AAHev//9ZDgAA3A7//1uvAACsAkL4//9RANwO//9br1EArAJC+EirUQCsAkL4IQJRAKwCQvhIqz4AmQ4/7kmvPQCsAkL4IQI9AJkOP+5Jr8nbelCF7GnFyNt6UIXsacW4J4FtSNQoz3/ZgW1I1CjPAACBbQHSKM8AAIFtAdLBbQAAbHC2Rzhv9wCAXWksyMkAAIBdaSnIyQAAgF1pKZ9dAACAXWksn10AAPgHLRE8rbgAgF1pKf//uAD4By0R//+4AIBdaSnIybgA+ActEfwHuACAXWkpn124APgHLRE8rXgA+ActEfwHeABscLZHpc+XAbJP50tATpcBsk/nS6jElwFscLZHOG+XAbJP50tATv//bHC2Rzhv///0xedLQE7///TF50tATv//sk9pv0BO//+yT+dLQE7///TFab9ATv//sk/nS6jEAACyT2m/QE4AALJPab+oxAAAsk/nS0BOAAD0xedLQE4azfTFab9ATqjN0dMsS+J3bc/R09e/4neozfTF50tATnHP9MVpv0BO//+yT2m/QE7///TFab9AToTNsk/nS6jE2BayT2m/qMQcC0d5LEuJ0gAAsk/nS6jEAwCyT2m/qMS/ALJPab9ATr8Ask9pv6jEAABHede/idIAAP9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3/y/v9/8v7/f/L+/3/y/v9/////f////3////9/////f////38F/naD////fwX+/38F/v9/Bf7/fz3+/389/v9/Muj/fzLo/38y6P9/Mui9g///vYP//72D//+9g////3+G/P9/hvz/f4b8/3+G/ISK//+Eiv//hIr//4SK////f////3////9/////f////3////9///9Biv//QYr//0GK//9Biv//QYr///9/h/j/f4f4/3+H+P9/h/j/f4f4/3//v/9//7//f/+//3//v/9//7//f/+/IkC6fyJAun8hQLt/pP/SP6T/0j+20Y/ct9GP3LfRj9y30Y/cwlhhrMJYYKzCWGCswlhgrMJYYKzv0h7a79Id2u/SHdrv0h3a79Id2v8//3//P/9//z//f/8//3//P/9//z//f8rSaNrI0mnayNJp2srSaNrkVnKr5FZxq+RWcavkVnKr8UAcfvFAHH7xQBx+8UAcfmphtbBpYbSwaGGzsGphtrDu/nc/7v53P+7+dz/u/nc/7v53Pyv/lT8r/5U/ef+8P/8//3//P/9//z//f/8//3//P/9/ef+8P3n/vD95/7w//X8CAP1/AgD8fwMAI4ANACKACwAjgA4A7/8h7nRucoLQbgSF6v8i7k1u3H9Pbsl/FY///xWP//8Vj///FY///4qA//+KgP//ioD///9/SP//f0j//3//P/9/8v7/f/L+/39q/v9/av7/f2r+/39q/v9/av7/f2r+/3////9/////f////3////9/Bf7/fwX+/3////9/////f///QYr///9/h/gVj///FY///4qA//+KgP//ioD///9/SP//f0j//39I//9/SP//f/+//3//v/9//7+k/9I/pP/SP6T/0j+k/9I/IkC6fyJAun8iQLp/t9GP3LbRj9zCWGCs79Id2v8//3//P/9//z//f+7+dz//P/9//z//f/8//3//P/9/M/+ZPzP/mT8z/5k/M/+ZPzP/mT8z/5k/ef+8P3n/vD/eQEF+3kBBft5AQX7eQEF+doP//3aD//92g////3////9/////f////3////8//3//P/9//z//f/8//3/8fwMAZ47LGOCY0CpkjsUY75jqKv9/Pf7/fz3+IoALANBuBIV0bnCC+/8f7vv/H+4r/5U/K/+VP/n/SO74/0ju") +}, { +"aabb": AABB(0.878764, -25.1276, 0.904538, 0.1369, 16.7513, 0.138266), +"attribute_data": PackedByteArray("/+f//0z/3i5M/////+feLq3o/////94urejeLv////8="), +"format": 34896613399, +"index_count": 12, +"index_data": PackedByteArray("AAABAAIAAAADAAEABAAFAAYABAAHAAUA"), +"material": SubResource("StandardMaterial3D_btu5w"), +"name": "Material.015", +"primitive": 3, +"uv_scale": Vector4(1.20736, 2.4759, 0, 0), +"vertex_count": 8, +"vertex_data": PackedByteArray("//8AAAAA//8LrP//AAD//wusAAAAAP///////wAA//8AAAAA//8AAAAA//9+qgAAAAD/////AAAAAAAAfqoAAP9/////f////3////9/////P/9//z//f/8//3//P/9/") +}, { +"aabb": AABB(0.755518, -35.921, 0.782753, 0.260146, 33.7366, 0.260051), +"attribute_data": PackedByteArray("msj//4utffGkrf//T8h98SigffEooP//msj//4utffFPyH3xpK3//yigffEooP//Onhcwk6ODtsAilzCOngO23a6DtuNrVzCH4J1rL+WEIG/lnWsH4IQgQDAEIEAwHWsOngO2zGKdsNOjg7bOnh2wyCudsN2ug7bKKBA1b2o/9MnqEDVKKD/0+W5/9MluEDVKKAjV72oFlG9qCNXKKAWUeW5FlHluSNXKKD/096n3tW9qP/TKKDe1Um33tXluf/TjN9UZ1rqH1pa6lRnjN8fWvf/H1r3/1RnjN9UZ13qH1qM3x9aXepUZ///H1r//1Rn5blJ5km30OBJt0nm5bkx4Em33tXluf/TKKAjV7uoFlEooBZRu6gjV+G5FlHhuSNXJbhJ5uW5MeDluUnmJbic4OW5/9MluEDVi7k0bAWQj44FkDRsi7ltlh+Cday9lhCBH4IQgb2Wdaz5vxCB+b91rI2tZVx2up6GdrplXI2tYn52ug7bja1cwou5bZYFkEXTBZCPjou53eo="), +"format": 34896613399, +"index_count": 192, +"index_data": PackedByteArray("AAABAAIAAAADAAEAAgABAAQAAgAEAAUABgAHAAgABgAJAAcACQAKAAcACQALAAoADAANAA4ADAAPAA0ADgANABAADgAQABEAEgATABQAEgAVABMAFAATABYAFAAWABcAGAAZABoAGAAbABkAGgAZABwAGgAcAB0AHgAfACAAHgAhAB8AIAAfACIAIAAiACMAJAAlACYAJAAnACUAJgAlACgAJgAoACkAKgArACwAKgAtACsALAArAC4ALAAuAC8AMAAxADIAMAAzADEAMgAxADQAMgA0ADUANgA3ADgANgA5ADcAOQA6ADcAOQA7ADoAPAA9AD4APAA/AD0APwBAAD0APwBBAEAAQgBDAEQAQgBFAEMARQBGAEMARQBHAEYASABJAEoASABLAEkASwBMAEkASwBNAEwATgBPAFAATgBRAE8AUgBTAFQAUgBVAFMAVQBWAFMAVQBXAFYAWABZAFoAWABbAFkAWwBcAFkAWwBdAFwAXgBfAGAAXgBhAF8A"), +"material": SubResource("StandardMaterial3D_04fvv"), +"name": "CEILNG.007", +"primitive": 3, +"uv_scale": Vector4(3.92971, 5.52666, 0, 0), +"vertex_count": 98, +"vertex_data": PackedByteArray("AAAAAAAABgDXAdYPMKsGAAAAAACSqgYA1wHWD9cBBgDXAdYP//8GAAAAAAD//wYAAAAAAAAA//8gq9YP1wH//9cB1g/XAf//gqoAAAAA/////9YP1wH/////AAAAAP////++NZ9dAACVvJ05VDYAAK3JvjWfXQAA//+dOVQ2AAA5Np05VDYAAIBdvjWfXQAA//+dOVQ2//+VvNVFVDb//5W8nTlUNv/////VRVQ2//85NtVFVDb//zk2nTlUNv/////VRVQ2//8YyV9J31v//5W81UVUNv////9fSd9b///BW19J31v//zk21UVUNv/////C10po//+DybbYIV3//zTNwtdKaP////+22CFd//8AXbbYIV3//xRowtdKaP////+22CFd//+DyQfjIV3//4PJttghXf////8H4yFd//8AXQfjIV3//wBdttghXf////8H4yFdAAADz17kwW0AAIPJB+MhXQAA//9e5MFtAACBbV7kwW0AAABdB+MhXQAA///C6Tc1//9OvP//NzX//068wuk3Nf///////zc1//9hNf//NzX//2E1wuk3Nf//YTXC6f//AABhNf//ULwAAGE1/////wAAYTXC6VC8AABhNf//NzUAAGE1wuk3NQAAAF0H4///ZyiBbV7kKM9mKIFtXuT//2YoAF0H457JZiiBbV7kwW1mKABdB+MhXWYoAF222P//AAAAXQfjnskAAABdB+P//wAAAF222J7JAAAAXQfjIV0AAABdttghXQAAFGjC1///d9cAXbbYnsl31wBdttj//3fXFGjC11bNd9cAXbbYIV131xRowtdKaHfXOTbVRf//RtfBW19JMslG18FbX0n//0bXOTbVRa+8Rdc5Np05//8AADk21UWvvAAAOTbVRf//AAA5Np05r7wAADk21UVUNgAAOTadOVQ2AACAXb41///OKDk2nTmvvM4oOTadOf//ziiAXb41yMnOKDk2nTlUNs4ogF2+NZ9dzig5NtVFr7xG18FbX0nfW0bXwVtfSTLJRtc5NtVFVDZG1/j//D/4//w/+P/8P/j//D/4//w/+P/8P/9/8P//f/D//3/w//9/8P//f/D//3/w/y97/v8ve/7/z4T//y97/v/PhP//z4T///9//v//f/7//3/+//9/////f////3////9/+Pr/f/j6/3/4+v9/+Pr/f/j6/3/4+oWF//+Fhf//hYX//4WF//+Fhf//hYX///9/////f////3////9/////f////3////9/Kfr/fyn6/38p+v9/Kfr/fyn6/38p+v9/////f////3////9/////f////3////8//3//P/9//z//f/8//3//P/9//z//f/1X/qv9V/6r/Vf+q/1X/qv9V/6r/Vf+q/8//3//P/9//z//f/8//3//P/9//z//fxLU19cT1NfXE9TX1xLU19cT1NfXE9TX159Xz6ufV8+rn1fPq59Xz6v/P/9//z//f/8//3//P/9//z//f/8//3871IbXO9SG1zvUhdc71IbXO9SF1zvUhdegV8+roFfPq6BXz6ugV8+r") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_etli6") + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_xywry"] +height = 6.0 +radius = 0.1 + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_7a87o"] +height = 6.0 +radius = 0.1 + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_adgr5"] +height = 6.0 +radius = 0.1 + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_3j8ld"] +height = 6.0 +radius = 0.1 + +[sub_resource type="BoxShape3D" id="BoxShape3D_xywry"] +size = Vector3(4, 0.557617, 4) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3j8ld"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0b3sx"] +albedo_texture = ExtResource("16_ide0m") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_adgr5"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1huxf"] +resource_name = "BOTTOM TRIM.007" +shading_mode = 0 +albedo_texture = ExtResource("17_pg6e1") + +[sub_resource type="ArrayMesh" id="ArrayMesh_p4f4g"] +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, 1.0428, 2.00022, 24.4466, 1e-05), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAA=") +}, { +"aabb": AABB(-0.984553, -36.1633, 1.0428, 2.00022, 12.6625, 1e-05), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAA=") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ux4sw"] +resource_name = "18_A1_CORRIDOR_A_Cube_003" +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, 1.0428, 2.00022, 24.4466, 1e-05), +"attribute_data": PackedByteArray("AAD/////AAAAAAAA/v///w=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_jhg27"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAD/v/+//7//v/+//7//v/+/") +}, { +"aabb": AABB(-0.984553, -36.1633, 1.0428, 2.00022, 12.6625, 1e-05), +"attribute_data": PackedByteArray("//////9//3//f///////fw=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_1huxf"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(2, 2, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAD///9/////f////3////9/") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_p4f4g") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4sxun"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="ArrayMesh" id="ArrayMesh_te6g1"] +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP//AAAAAP//AAAAAAAAAAAAAAAAAAD/////AAA=") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP//AAAAAP//AAAAAAAAAAAAAAAAAAD/////AAA=") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_tmqha"] +resource_name = "18_A1_CORRIDOR_A_Cube_004" +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), +"attribute_data": PackedByteArray("AAD/////AAAAAAAA/////w=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_jhg27"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP//qioAAP//AACqKgAAAAAAAKoqAAD/////qiqqKqoqqiqqKqoqqiqqKqoq") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), +"attribute_data": PackedByteArray("/3///////3///////3//fw=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_1huxf"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(2, 2, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP///78AAP//AAD/vwAAAAAAAP+/AAD//////7//fwAA/38AAP9/AAD/fwAA") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_te6g1") + +[sub_resource type="BoxShape3D" id="BoxShape3D_7uihh"] +size = Vector3(4, 4, 4) + +[sub_resource type="PlaneMesh" id="PlaneMesh_adgr5"] +material = ExtResource("18_ublib") +size = Vector2(4, 4) + [sub_resource type="BoxShape3D" id="BoxShape3D_xw4dv"] size = Vector3(80, 1, 80) @@ -45,95 +626,346 @@ corridor_cost_multiplier = 0.1 show_debug_in_editor = false hide_debug_visuals_for_all_generated_rooms = false -[node name="Item Transfer Room_0" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_atq1f")] -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 22, 0, 20) +[node name="Antechamber A_0" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_gkkr3")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0, 0, -14) +script = ExtResource("8_1l8yt") +size_in_voxels = Vector3i(5, 1, 4) +voxel_scale = Vector3(4, 4, 4) +min_count = 1 +max_count = 2 -[node name="BasinRoom_1" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_5rblf")] -transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 4, 0, 14) +[node name="Item Transfer Room_1" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("6_atq1f")] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -22, 0, 8) +script = ExtResource("8_1l8yt") +size_in_voxels = Vector3i(3, 1, 4) +voxel_scale = Vector3(4, 4, 4) +min_count = 1 +max_count = 1 -[node name="Antechamber A_2" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("3_gkkr3")] -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -22, 0, 20) +[node name="Floor Exit A_2" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("12_n02rw")] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 30, 0, -18) +script = ExtResource("8_1l8yt") +size_in_voxels = Vector3i(5, 1, 9) +voxel_scale = Vector3(4, 4, 4) +min_count = 1 +max_count = 1 -[node name="Floor Exit A_3" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("12_n02rw")] -transform = Transform3D(1.19249e-08, 0, -1, 0, 1, 0, 1, 0, 1.19249e-08, 14, 0, -6) +[node name="BasinRoom_3" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("8_5rblf")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 16, 0, 10) +script = ExtResource("8_1l8yt") +size_in_voxels = Vector3i(5, 1, 4) +voxel_scale = Vector3(4, 4, 4) +min_count = 1 +max_count = 2 -[node name="Corridor_4" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 30) +[node name="Corridor_4" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -18) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_5" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 30) +[node name="Corridor_5" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -14) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_6" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 30) +[node name="Corridor_6" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -10) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_7" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 26) +[node name="Corridor_7" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -10) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_8" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 22) +[node name="Corridor_8" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -6) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_9" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 18) - -[node name="Corridor_10" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 14) - -[node name="Corridor_11" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 26) - -[node name="Corridor_12" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 26) - -[node name="Corridor_13" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 26) - -[node name="Corridor_14" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 26) - -[node name="Corridor_15" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 26) - -[node name="Corridor_16" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 26) - -[node name="Corridor_17" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 22) - -[node name="Corridor_18" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 18) - -[node name="Corridor_19" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 14) - -[node name="Corridor_20" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, 10) - -[node name="Corridor_21" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 10) - -[node name="Corridor_22" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 10) - -[node name="Corridor_23" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 6) - -[node name="Corridor_24" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 2) - -[node name="Corridor_25" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, -2) - -[node name="Corridor_26" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +[node name="Corridor_9" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, -2) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_27" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -2) +[node name="Corridor_10" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 2) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_28" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 0, -6) +[node name="Corridor_11" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 6) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) -[node name="Corridor_29" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, -6) +[node name="Corridor_12" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 10) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_13" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 14) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_14" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14, 0, 18) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_15" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 18) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_16" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22, 0, 18) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_17" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -10) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_18" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -14) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_19" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -18) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_20" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -22) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_21" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -26) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_22" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -26) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_23" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -26) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_24" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -30) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_25" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -34) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_26" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -38) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_27" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -38) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_28" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -38) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_29" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, -38) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_30" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -22) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_31" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -18) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_32" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -14) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_33" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -10) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_34" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -6) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_35" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -2) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_36" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -2) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_37" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -2) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_38" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_39" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 2) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_40" type="Node3D" parent="NavigationRegion3D/DungeonGenerator" instance=ExtResource("13_ofywd")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 6) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Corridor_41" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 10) +script = ExtResource("9_lcc45") +voxel_scale = Vector3(4, 4, 4) + +[node name="Model" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"] +script = ExtResource("10_5rblf") + +[node name="18_A1_CORRIDOR_A" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.88616, -2.025, -0.989241) + +[node name="FLOOR_CEILING" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"] +transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278) +mesh = SubResource("ArrayMesh_wxha4") +skeleton = NodePath("") + +[node name="CA_COLUMN_001" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"] +transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278) +mesh = SubResource("ArrayMesh_vt22i") +skeleton = NodePath("") + +[node name="CA_COLUMN_002" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"] +transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278) +mesh = SubResource("ArrayMesh_yrm7d") +skeleton = NodePath("") + +[node name="CA_COLUMN_003" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"] +transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278) +mesh = SubResource("ArrayMesh_ltk4i") +skeleton = NodePath("") + +[node name="CA_COLUMN" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Model/18_A1_CORRIDOR_A"] +transform = Transform3D(2, 0, 0, 0, 0.10779, 0, 0, 0, 2, -9.92441, 3.92578, 0.91278) +mesh = SubResource("ArrayMesh_pjk1a") +skeleton = NodePath("") + +[node name="Collision" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"] + +[node name="StaticBody3D" type="StaticBody3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.88616, -2.025, -0.989241) +collision_layer = 2147483649 +collision_mask = 2147483649 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.7192, 2.25405, -0.816737) +shape = SubResource("CylinderShape3D_xywry") + +[node name="CollisionShape3D2" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.13273, 2.03746, -0.752249) +shape = SubResource("CylinderShape3D_7a87o") + +[node name="CollisionShape3D3" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.14647, 1.81901, 2.73139) +shape = SubResource("CylinderShape3D_adgr5") + +[node name="CollisionShape3D4" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.637, 2.14158, 2.73139) +shape = SubResource("CylinderShape3D_3j8ld") + +[node name="CollisionShape3D5" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.88863, -0.243546, 0.997182) +shape = SubResource("BoxShape3D_xywry") + +[node name="Doors" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"] + +[node name="DOOR?2" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors"] +transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0498385, 0.0586318, 1.96147) +use_collision = true +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_3j8ld") + +[node name="Box" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?2"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_0b3sx") +size = Vector3(4, 4, 0.203003) +material = SubResource("StandardMaterial3D_adgr5") + +[node name="CA_WALL_3" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?2"] +transform = Transform3D(-8.74228e-08, 0.10779, 1.73929e-20, -2, -4.71165e-09, 3.97904e-13, 3.97904e-13, 0, 2, 1.84215, 0.088098, -2.03793) +mesh = SubResource("ArrayMesh_ux4sw") +skeleton = NodePath("") + +[node name="DOOR?3" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors"] +transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, -1.95513, 0.0586318, -0.00728679) +use_collision = true +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_3j8ld") + +[node name="Box" type="CSGBox3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?3"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_0b3sx") +size = Vector3(4, 4, 0.203003) +material = SubResource("StandardMaterial3D_4sxun") + +[node name="CA_WALL_4" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Doors/DOOR?3"] +transform = Transform3D(3.82137e-15, 0.10779, 8.74228e-08, 8.74228e-08, -4.71165e-09, 2, 2, 0, -8.74228e-08, 1.84215, -0.0691742, 1.91687) +mesh = SubResource("ArrayMesh_tmqha") +skeleton = NodePath("") + +[node name="Spawn Points" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"] + +[node name="Room" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"] + +[node name="Room" type="Area3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Room"] +unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 11.8436, 0) +collision_layer = 0 +collision_mask = 10 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Room/Room"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00170277, -11.8564, -1.19209e-07) +shape = SubResource("BoxShape3D_7uihh") + +[node name="Minimap" type="Node3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) + +[node name="Minimap" type="MeshInstance3D" parent="NavigationRegion3D/DungeonGenerator/Corridor_41/Minimap"] +unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.03602, 0) +visible = false +layers = 2 +mesh = SubResource("PlaneMesh_adgr5") +skeleton = NodePath("../..") [node name="RoomsContainer" type="Node3D" parent="NavigationRegion3D/DungeonGenerator"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2.glb index 6cb0ce62..05db70e0 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUM6N.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUM6N.png new file mode 100644 index 00000000..f11b1851 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUM6N.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUM6N.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUM6N.png.import new file mode 100644 index 00000000..05d627fa --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUM6N.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2guhhxtcwjf4" +path="res://.godot/imported/ANTECHAMBER_TYPE1_VER2_COLUM6N.png-94062d607d1f63c780f517d36cea019b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "2a1126435cac415d70fa588f883518e0" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUM6N.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE1_VER2_COLUM6N.png-94062d607d1f63c780f517d36cea019b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg new file mode 100644 index 00000000..e84323a7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg.import new file mode 100644 index 00000000..413a6328 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lungroqn83pd" +path="res://.godot/imported/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg-7b2f24b05c275f39f57456d1bdbf50b3.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "3f97927b9fe1bfcc3a23e1438895a16f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE1_VER2_COLUMN3.jpg-7b2f24b05c275f39f57456d1bdbf50b3.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SA115.png.import new file mode 100644 index 00000000..5cee724a --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwrh4esjg7hxu" +path="res://.godot/imported/ANTECHAMBER_TYPE1_VER2_SA115.png-e5caa1b6b7d1311224863ed8309cb0f5.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SA115.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE1_VER2_SA115.png-e5caa1b6b7d1311224863ed8309cb0f5.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png.import new file mode 100644 index 00000000..a84993d5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b42l76bn1errn" +path="res://.godot/imported/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png-9faeb86ad0bc00a4d92880c314859485.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE1_VER2_SNEK TILE.png-9faeb86ad0bc00a4d92880c314859485.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png.import index e931690b..757b2872 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png.import new file mode 100644 index 00000000..07da357f --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq5pti42toowv" +path="res://.godot/imported/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png-1e4b1e239b66112438c764186fdb9378.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE1_VER2_brick_corridor_corrected.png-1e4b1e239b66112438c764186fdb9378.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png.import index 62e1ad67..2df23011 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2.glb index 6bca4f42..e1974767 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUM6N.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUM6N.png new file mode 100644 index 00000000..f11b1851 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUM6N.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUM6N.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUM6N.png.import new file mode 100644 index 00000000..1a0e3728 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUM6N.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg17sk0py3jtu" +path="res://.godot/imported/PIT_ROOM_VER2_COLUM6N.png-028563db327bc465f03a917567f820f1.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "2a1126435cac415d70fa588f883518e0" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUM6N.png" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_COLUM6N.png-028563db327bc465f03a917567f820f1.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUMN3.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUMN3.jpg new file mode 100644 index 00000000..e84323a7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUMN3.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUMN3.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUMN3.jpg.import new file mode 100644 index 00000000..4fe04614 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUMN3.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmesyyyj5avxj" +path="res://.godot/imported/PIT_ROOM_VER2_COLUMN3.jpg-221ad8acac2ebbed08708d8b55cfcc61.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "3f97927b9fe1bfcc3a23e1438895a16f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_COLUMN3.jpg" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_COLUMN3.jpg-221ad8acac2ebbed08708d8b55cfcc61.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR2.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR2.jpg new file mode 100644 index 00000000..036539e3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR2.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR2.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR2.jpg.import new file mode 100644 index 00000000..a7067315 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR2.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf1o2middd5qf" +path="res://.godot/imported/PIT_ROOM_VER2_FLOOR2.jpg-bed271320b8c1bc25061dc5f19946130.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "103b893019b9db866163e6816f845611" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR2.jpg" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_FLOOR2.jpg-bed271320b8c1bc25061dc5f19946130.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR4.png new file mode 100644 index 00000000..3ca8cfbd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR4.png.import new file mode 100644 index 00000000..578e7074 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m3mkc3nonaey" +path="res://.godot/imported/PIT_ROOM_VER2_FLOOR4.png-2c12ccfba7ccff093c21ecedf2943fe3.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "48f9b13899567d3d7e589593ed161806" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_FLOOR4.png" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_FLOOR4.png-2c12ccfba7ccff093c21ecedf2943fe3.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_RAILING_1.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_RAILING_1.png new file mode 100644 index 00000000..20a70305 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_RAILING_1.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_RAILING_1.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_RAILING_1.png.import new file mode 100644 index 00000000..f5e5d57c --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_RAILING_1.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjek0k7sohogf" +path="res://.godot/imported/PIT_ROOM_VER2_RAILING_1.png-4b843cf285a0372bda502758e758cb74.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "1998fa79529d1ac5efbbec54633a001b" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_RAILING_1.png" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_RAILING_1.png-4b843cf285a0372bda502758e758cb74.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SA115.png.import new file mode 100644 index 00000000..bf38794f --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx445ahh3doxx" +path="res://.godot/imported/PIT_ROOM_VER2_SA115.png-99f6dba823c037e55c33dadabfd1eb0e.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SA115.png" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_SA115.png-99f6dba823c037e55c33dadabfd1eb0e.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SNEK TILE.png.import new file mode 100644 index 00000000..268892ef --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxkiu3hm5ft37" +path="res://.godot/imported/PIT_ROOM_VER2_SNEK TILE.png-5dcf97cd3f8a290910d0be786aa396ec.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_SNEK TILE.png" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_SNEK TILE.png-5dcf97cd3f8a290910d0be786aa396ec.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_brick_corridor_corrected.png.import new file mode 100644 index 00000000..474d8641 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfuta4yvnf8py" +path="res://.godot/imported/PIT_ROOM_VER2_brick_corridor_corrected.png-8b9c8d487aac865f056e005f11bb2925.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_brick_corridor_corrected.png-8b9c8d487aac865f056e005f11bb2925.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png.import index 1d75aff1..a75da2fc 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_reddertex.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_reddertex.png new file mode 100644 index 00000000..8027aff3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_reddertex.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_reddertex.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_reddertex.png.import new file mode 100644 index 00000000..52f4c195 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_reddertex.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br7mvr41l1eqk" +path="res://.godot/imported/PIT_ROOM_VER2_reddertex.png-34db1eb9c8bd0b0a0e196bfad25d0f70.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "474dbc67703db780c000ae66feec709a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/05. Pit Room/PIT_ROOM_VER2_reddertex.png" +dest_files=["res://.godot/imported/PIT_ROOM_VER2_reddertex.png-34db1eb9c8bd0b0a0e196bfad25d0f70.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2.glb index 55020fbc..82bb3e68 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg new file mode 100644 index 00000000..e84323a7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg.import new file mode 100644 index 00000000..fd99ba2c --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj7sed5wssfei" +path="res://.godot/imported/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg-8dcb7cbd3ee713918d4ec1f9b2a1378f.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "3f97927b9fe1bfcc3a23e1438895a16f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg" +dest_files=["res://.godot/imported/INNER_BALCONY_ROOM_VER2_COLUMN3.jpg-8dcb7cbd3ee713918d4ec1f9b2a1378f.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png new file mode 100644 index 00000000..5c07f5e0 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png.import new file mode 100644 index 00000000..25d79e11 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5sp1wur7704j" +path="res://.godot/imported/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png-b32fe2d686da6abef16410cf491b68c3.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "a941a67505935284d40bf0729cc68281" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png" +dest_files=["res://.godot/imported/INNER_BALCONY_ROOM_VER2_FLOOR SYMBOL_1.png-b32fe2d686da6abef16410cf491b68c3.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg new file mode 100644 index 00000000..036539e3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg.import new file mode 100644 index 00000000..063fb0cd --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcfl1scg5aunh" +path="res://.godot/imported/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg-33e9bcb1bae7940b5fe419814a3daa8d.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "103b893019b9db866163e6816f845611" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg" +dest_files=["res://.godot/imported/INNER_BALCONY_ROOM_VER2_FLOOR2.jpg-33e9bcb1bae7940b5fe419814a3daa8d.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR4.png new file mode 100644 index 00000000..3ca8cfbd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR4.png.import new file mode 100644 index 00000000..170235bb --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpnqt6i51gef6" +path="res://.godot/imported/INNER_BALCONY_ROOM_VER2_FLOOR4.png-d817271e3b8e4de17e4e55bd2d75fe2b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "48f9b13899567d3d7e589593ed161806" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_FLOOR4.png" +dest_files=["res://.godot/imported/INNER_BALCONY_ROOM_VER2_FLOOR4.png-d817271e3b8e4de17e4e55bd2d75fe2b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_RAILING_1.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_RAILING_1.png new file mode 100644 index 00000000..20a70305 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_RAILING_1.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_RAILING_1.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_RAILING_1.png.import new file mode 100644 index 00000000..444f2ba8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_RAILING_1.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw0wwjwfi628q" +path="res://.godot/imported/INNER_BALCONY_ROOM_VER2_RAILING_1.png-7a1cf43fe28bf67975b1690b6d42ee58.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "1998fa79529d1ac5efbbec54633a001b" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_RAILING_1.png" +dest_files=["res://.godot/imported/INNER_BALCONY_ROOM_VER2_RAILING_1.png-7a1cf43fe28bf67975b1690b6d42ee58.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_SNEK TILE.png.import new file mode 100644 index 00000000..125ee6b9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqk78vr3ewsa7" +path="res://.godot/imported/INNER_BALCONY_ROOM_VER2_SNEK TILE.png-faec9edb3e3c275b540c91a94c1b9543.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_SNEK TILE.png" +dest_files=["res://.godot/imported/INNER_BALCONY_ROOM_VER2_SNEK TILE.png-faec9edb3e3c275b540c91a94c1b9543.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png new file mode 100644 index 00000000..74ddada8 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png.import new file mode 100644 index 00000000..04564bbc --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4wv6v5v5jx4" +path="res://.godot/imported/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png-8486212f46c37ac8a7ab7c1fba9faaf6.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "e9d0d15dfb27e2595fee02f430f1a3df" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/06. Balcony Room A/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png" +dest_files=["res://.godot/imported/INNER_BALCONY_ROOM_VER2_concrete_0003_color_1k.png-8486212f46c37ac8a7ab7c1fba9faaf6.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3.glb index 3a42a18e..cc002db9 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block2.png new file mode 100644 index 00000000..1a23ed22 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block2.png.import new file mode 100644 index 00000000..a898f2dd --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp1t6snqfef3r" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_block2.png-ce53ec9e9ef492217f3d31e0837b0976.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "af313ba541dac17ae770b2f93fb589fd" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block2.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_block2.png-ce53ec9e9ef492217f3d31e0837b0976.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block3.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block3.png new file mode 100644 index 00000000..f35c55b8 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block3.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block3.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block3.png.import new file mode 100644 index 00000000..277d197d --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block3.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvymy53oqlxj2" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_block3.png-bb9670b130449ab0ed2fd58b5b79c962.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "532883de8639eb1cb90362181641dedc" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block3.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_block3.png-bb9670b130449ab0ed2fd58b5b79c962.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block4.png new file mode 100644 index 00000000..95e8f313 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block4.png.import new file mode 100644 index 00000000..6a094ea2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wcuvtge12yvn" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_block4.png-f3c4c4fbd953d4463d229db2114daba3.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "78660a198a38161ba0d34ae477d74b0a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_block4.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_block4.png-f3c4c4fbd953d4463d229db2114daba3.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png new file mode 100644 index 00000000..86bbf067 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png.import new file mode 100644 index 00000000..264136b3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cysyhoynlc2a2" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png-8e72472af83e292f5c7f5e5f3d285b09.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "0d781f27867c0e5fd3c3f6ae3ba52ce3" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_A1_eyeblock.png-8e72472af83e292f5c7f5e5f3d285b09.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_COLUM6N.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_COLUM6N.png new file mode 100644 index 00000000..f11b1851 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_COLUM6N.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_COLUM6N.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_COLUM6N.png.import new file mode 100644 index 00000000..9e459616 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_COLUM6N.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cig3fbdg7l4ax" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_COLUM6N.png-cb466fbbfbef1452ba76451376beabf7.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "2a1126435cac415d70fa588f883518e0" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_COLUM6N.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_COLUM6N.png-cb466fbbfbef1452ba76451376beabf7.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_FLOOR4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_FLOOR4.png new file mode 100644 index 00000000..3ca8cfbd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_FLOOR4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_FLOOR4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_FLOOR4.png.import new file mode 100644 index 00000000..39311a3c --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_FLOOR4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwo84xul3tbrm" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_FLOOR4.png-77e9255cb2da8562979373cac5b3cc0d.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "48f9b13899567d3d7e589593ed161806" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_FLOOR4.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_FLOOR4.png-77e9255cb2da8562979373cac5b3cc0d.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA115.png.import new file mode 100644 index 00000000..41cb7258 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xwkn03uhknt" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_SA115.png-84b81fd6015fa0f8ce3207ecd2959dc9.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SA115.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_SA115.png-84b81fd6015fa0f8ce3207ecd2959dc9.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png.import new file mode 100644 index 00000000..3f7402fb --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ib65kw84y0s" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png-650ac65dcdb54df0f45c0ccc0fe9c6a3.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_SNEK TILE.png-650ac65dcdb54df0f45c0ccc0fe9c6a3.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png.import index 2efd9db0..86e60a83 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png.import new file mode 100644 index 00000000..72b202d2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpgl35ub2s5lp" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png-6db64d870bd2136270d8da6ef4085243.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_brick_corridor_corrected.png-6db64d870bd2136270d8da6ef4085243.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png new file mode 100644 index 00000000..74ddada8 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png.import new file mode 100644 index 00000000..16006b48 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://32xrv8lsy4b0" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png-828007cb76434e1c9d3d9a677b9da82c.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "e9d0d15dfb27e2595fee02f430f1a3df" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_concrete_0003_color_1k.png-828007cb76434e1c9d3d9a677b9da82c.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_reddertex.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_reddertex.png new file mode 100644 index 00000000..8027aff3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_reddertex.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_reddertex.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_reddertex.png.import new file mode 100644 index 00000000..288cdeb4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_reddertex.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxj1tetmth5rw" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_reddertex.png-9b3823e156a082686256e7cbc412b9c5.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "474dbc67703db780c000ae66feec709a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_reddertex.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_reddertex.png-9b3823e156a082686256e7cbc412b9c5.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png new file mode 100644 index 00000000..a64a3b72 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png.import new file mode 100644 index 00000000..da34d6f3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbw4aa7ljuibi" +path="res://.godot/imported/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png-2a7ed288cf8e8486111a7ea7e08aa316.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "c465ab529f094408747aa3899e7f4d51" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/07. Statue Room/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png" +dest_files=["res://.godot/imported/ANTECHAMBER_TYPE2_VER3_yellow_grunge_glass.png-2a7ed288cf8e8486111a7ea7e08aa316.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2.glb index a9d55daf..bd2e1cbd 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SA115.png.import new file mode 100644 index 00000000..5f6ff5e9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwg3oxfufc2ei" +path="res://.godot/imported/BASIN_ROOM_VER2_SA115.png-d11d2ebdf5c1a7bcc98fc1f253a81356.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SA115.png" +dest_files=["res://.godot/imported/BASIN_ROOM_VER2_SA115.png-d11d2ebdf5c1a7bcc98fc1f253a81356.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SNEK TILE.png.import new file mode 100644 index 00000000..7e202e59 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjwb2aevrdh57" +path="res://.godot/imported/BASIN_ROOM_VER2_SNEK TILE.png-ead6ddf6d704054ab9bce4d12789aa8f.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_SNEK TILE.png" +dest_files=["res://.godot/imported/BASIN_ROOM_VER2_SNEK TILE.png-ead6ddf6d704054ab9bce4d12789aa8f.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png.import index 8ee10fe9..bcbc942b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_brick_corridor_corrected.png.import new file mode 100644 index 00000000..18d4a701 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg6kcxa6qs23s" +path="res://.godot/imported/BASIN_ROOM_VER2_brick_corridor_corrected.png-ac1e41450b56b07a48ff050033151891.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/BASIN_ROOM_VER2_brick_corridor_corrected.png-ac1e41450b56b07a48ff050033151891.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png.import index 31671780..60a96647 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/08. Basin Room/BASIN_ROOM_VER2_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3.1.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3.1.glb index b960fa06..e7c938ec 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3.1.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3.1.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUM6N.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUM6N.png new file mode 100644 index 00000000..f11b1851 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUM6N.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUM6N.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUM6N.png.import new file mode 100644 index 00000000..6ecb081f --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUM6N.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6ydm6y2i6ms2" +path="res://.godot/imported/COLUMN_ROOM_VER3_COLUM6N.png-f10ce5b6c09e852edbcff9db701941fe.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "2a1126435cac415d70fa588f883518e0" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUM6N.png" +dest_files=["res://.godot/imported/COLUMN_ROOM_VER3_COLUM6N.png-f10ce5b6c09e852edbcff9db701941fe.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png new file mode 100644 index 00000000..02f88faf Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png.import new file mode 100644 index 00000000..837737d0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcn0l7qqcoydp" +path="res://.godot/imported/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png-84a8ddadbeadc6f842759b5283e38c31.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "004cf52e6444d0bd1642b768a6ce5c6e" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png" +dest_files=["res://.godot/imported/COLUMN_ROOM_VER3_FLOOR-SYMBOL-3.png-84a8ddadbeadc6f842759b5283e38c31.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR2.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR2.jpg new file mode 100644 index 00000000..036539e3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR2.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR2.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR2.jpg.import new file mode 100644 index 00000000..2fce166b --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR2.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr4qo6moke8r2" +path="res://.godot/imported/COLUMN_ROOM_VER3_FLOOR2.jpg-46e6cdeae2600866cdf3194b677805ae.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "103b893019b9db866163e6816f845611" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_FLOOR2.jpg" +dest_files=["res://.godot/imported/COLUMN_ROOM_VER3_FLOOR2.jpg-46e6cdeae2600866cdf3194b677805ae.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SA115.png.import new file mode 100644 index 00000000..94681c88 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5yl6qjksap15" +path="res://.godot/imported/COLUMN_ROOM_VER3_SA115.png-5543b58ec49d75c17d695a4777cb42f1.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SA115.png" +dest_files=["res://.godot/imported/COLUMN_ROOM_VER3_SA115.png-5543b58ec49d75c17d695a4777cb42f1.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SNEK TILE.png.import new file mode 100644 index 00000000..5b8096d7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4cbvgmwls1yr" +path="res://.godot/imported/COLUMN_ROOM_VER3_SNEK TILE.png-9135a0acb1c4000e050680325702c5cf.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_SNEK TILE.png" +dest_files=["res://.godot/imported/COLUMN_ROOM_VER3_SNEK TILE.png-9135a0acb1c4000e050680325702c5cf.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png.import index cc425f6b..77dd30fa 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_brick_corridor_corrected.png.import new file mode 100644 index 00000000..15f3457d --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb2tqm84d4lfo" +path="res://.godot/imported/COLUMN_ROOM_VER3_brick_corridor_corrected.png-6bfdfe3666a1a801ef15541955c10c1d.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/COLUMN_ROOM_VER3_brick_corridor_corrected.png-6bfdfe3666a1a801ef15541955c10c1d.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png.import index 00771788..d1dc533e 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A.glb index 10060b70..909a0ef3 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg new file mode 100644 index 00000000..b6de75ce Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg.import new file mode 100644 index 00000000..75370c13 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0xvmwpa6jwho" +path="res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg-d5be62c098c616a9096c1a292aaa965e.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "911914a4d08e3cd00c0e1bd4323866b6" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg" +dest_files=["res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_SA115-SMALL.jpg-d5be62c098c616a9096c1a292aaa965e.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png.import new file mode 100644 index 00000000..12f14763 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cthsrpanafsr2" +path="res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png-c4f9b974d80acdb5f82e3b52c5e2f357.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png" +dest_files=["res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_SA115.png-c4f9b974d80acdb5f82e3b52c5e2f357.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png.import new file mode 100644 index 00000000..8d269cc9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddjxtrr0tejbl" +path="res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png-db56f17114e4af011aca7daf071fcea9.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png" +dest_files=["res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_SNEK TILE.png-db56f17114e4af011aca7daf071fcea9.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png.import index 2b68786c..c0322df8 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png.import new file mode 100644 index 00000000..eaa4376c --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d03572ispcdy2" +path="res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png-31e078e91a8107d5603e2a9493ad1eb3.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_brick_corridor_corrected.png-31e078e91a8107d5603e2a9493ad1eb3.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png new file mode 100644 index 00000000..197a4fbf Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png.import new file mode 100644 index 00000000..fb7192fb --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsrdo7dcmt6ai" +path="res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png-715a652f93662310f85b558fa7a56fb6.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "d706d78841685bb2005ce12eb6a4c8da" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png" +dest_files=["res://.godot/imported/10_A1_ITEM_TRANSFER_ROOM_A_greeen2.png-715a652f93662310f85b558fa7a56fb6.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png.import index 949f5c99..234055a8 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/10. Item Transfer Room/10_A1_ITEM_TRANSFER_ROOM_A_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM.glb index f901c9aa..bd9dc25f 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_AREA1_BLOCKED.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_AREA1_BLOCKED.png new file mode 100644 index 00000000..3d2a3b0f Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_AREA1_BLOCKED.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_AREA1_BLOCKED.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_AREA1_BLOCKED.png.import new file mode 100644 index 00000000..f17d12e7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_AREA1_BLOCKED.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dauo16ghjxise" +path="res://.godot/imported/11_A1_LONG_ROOM_AREA1_BLOCKED.png-22142b92e6ed34e29a976fe26124bf89.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "814b16e0ed5b1d9c5539a1eed17500c2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_AREA1_BLOCKED.png" +dest_files=["res://.godot/imported/11_A1_LONG_ROOM_AREA1_BLOCKED.png-22142b92e6ed34e29a976fe26124bf89.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUM6N.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUM6N.png new file mode 100644 index 00000000..f11b1851 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUM6N.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUM6N.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUM6N.png.import new file mode 100644 index 00000000..e2ea3a02 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUM6N.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgk2m8lmi5btg" +path="res://.godot/imported/11_A1_LONG_ROOM_COLUM6N.png-7820c11d5d4f429024cd376da75ed5a9.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "2a1126435cac415d70fa588f883518e0" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUM6N.png" +dest_files=["res://.godot/imported/11_A1_LONG_ROOM_COLUM6N.png-7820c11d5d4f429024cd376da75ed5a9.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN3.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN3.jpg new file mode 100644 index 00000000..e84323a7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN3.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN3.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN3.jpg.import new file mode 100644 index 00000000..a504f519 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN3.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y8mj7q8fr50u" +path="res://.godot/imported/11_A1_LONG_ROOM_COLUMN3.jpg-0a31694c5cf30569f396ef2397e3f840.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "3f97927b9fe1bfcc3a23e1438895a16f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_COLUMN3.jpg" +dest_files=["res://.godot/imported/11_A1_LONG_ROOM_COLUMN3.jpg-0a31694c5cf30569f396ef2397e3f840.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SA115.png.import new file mode 100644 index 00000000..ca742ea7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yl46km60p636" +path="res://.godot/imported/11_A1_LONG_ROOM_SA115.png-5f6e60be677cb04d8b3681dbf7a2e905.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SA115.png" +dest_files=["res://.godot/imported/11_A1_LONG_ROOM_SA115.png-5f6e60be677cb04d8b3681dbf7a2e905.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SNEK TILE.png.import new file mode 100644 index 00000000..02802ae2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm6r21djup1d1" +path="res://.godot/imported/11_A1_LONG_ROOM_SNEK TILE.png-0e5631ca798da84cd66407aa924c3769.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_SNEK TILE.png" +dest_files=["res://.godot/imported/11_A1_LONG_ROOM_SNEK TILE.png-0e5631ca798da84cd66407aa924c3769.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png.import index 9fecd74d..bf65ff46 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_brick_corridor_corrected.png.import new file mode 100644 index 00000000..c2530bf8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhlw3c1wux8ra" +path="res://.godot/imported/11_A1_LONG_ROOM_brick_corridor_corrected.png-63da63a83b22055b427397ec2bd146a9.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/11_A1_LONG_ROOM_brick_corridor_corrected.png-63da63a83b22055b427397ec2bd146a9.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png.import index f2349884..91fa782e 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/11. Long Room/11_A1_LONG_ROOM_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM.glb index 9231e106..ea2874f7 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg new file mode 100644 index 00000000..036539e3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg.import new file mode 100644 index 00000000..1e95ba9a --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beao3wwro8y1q" +path="res://.godot/imported/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg-a4a7626ff7012d5a029806b2367bf603.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "103b893019b9db866163e6816f845611" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg" +dest_files=["res://.godot/imported/12_A1_JUMP_SCARE_ROOM_FLOOR2.jpg-a4a7626ff7012d5a029806b2367bf603.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SA115.png.import new file mode 100644 index 00000000..3cdf6a3d --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk0hg53bb6msa" +path="res://.godot/imported/12_A1_JUMP_SCARE_ROOM_SA115.png-43d772477f0bb37783e2b6b89875fe7c.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SA115.png" +dest_files=["res://.godot/imported/12_A1_JUMP_SCARE_ROOM_SA115.png-43d772477f0bb37783e2b6b89875fe7c.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png.import new file mode 100644 index 00000000..d034b6bf --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmw3t2mjcwmet" +path="res://.godot/imported/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png-3a945f652d7dacf158dd14ea86688c2b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png" +dest_files=["res://.godot/imported/12_A1_JUMP_SCARE_ROOM_SNEK TILE.png-3a945f652d7dacf158dd14ea86688c2b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png.import index 8fe0a50c..ccf506e9 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png.import new file mode 100644 index 00000000..ae8f53ea --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1pt1aopasy66" +path="res://.godot/imported/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png-26b2f68d3257d262806d3558ddc75cab.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/12_A1_JUMP_SCARE_ROOM_brick_corridor_corrected.png-26b2f68d3257d262806d3558ddc75cab.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png.import index c0054071..9fa7f92b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/12. Jump Scare Room/12_A1_JUMP_SCARE_ROOM_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2.glb index bc68d0e3..5e005663 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR4.png new file mode 100644 index 00000000..3ca8cfbd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR4.png.import new file mode 100644 index 00000000..f751e039 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chvjegluy27o5" +path="res://.godot/imported/WATER_ROOM_VER2_FLOOR4.png-300405f19a66ca385a2ed5e1dfad21c0.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "48f9b13899567d3d7e589593ed161806" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR4.png" +dest_files=["res://.godot/imported/WATER_ROOM_VER2_FLOOR4.png-300405f19a66ca385a2ed5e1dfad21c0.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SA115.png.import new file mode 100644 index 00000000..3f33949e --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br3q4ygytgmyy" +path="res://.godot/imported/WATER_ROOM_VER2_SA115.png-21b918bc5b66769a5d1a86d8e5e6449f.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SA115.png" +dest_files=["res://.godot/imported/WATER_ROOM_VER2_SA115.png-21b918bc5b66769a5d1a86d8e5e6449f.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SNEK TILE.png.import new file mode 100644 index 00000000..cc74a1a3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1enxooo5d68q" +path="res://.godot/imported/WATER_ROOM_VER2_SNEK TILE.png-cdf94a9b984edefe4f1a3b3053880090.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SNEK TILE.png" +dest_files=["res://.godot/imported/WATER_ROOM_VER2_SNEK TILE.png-cdf94a9b984edefe4f1a3b3053880090.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_brick_corridor_corrected.png.import new file mode 100644 index 00000000..a8df1c27 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7win1as4mg88" +path="res://.godot/imported/WATER_ROOM_VER2_brick_corridor_corrected.png-87832a75e5656adb920c0daa427ef3bc.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/WATER_ROOM_VER2_brick_corridor_corrected.png-87832a75e5656adb920c0daa427ef3bc.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png index 54a01ab2..62529520 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png.import index 4371325e..270fa6da 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "25ba542df3f74f669306af7db5535c0c" +"md5": "f388813722b400dd3365396c2a46f481" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png.import index a7b9b2da..b2746119 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_reddertex.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_reddertex.png new file mode 100644 index 00000000..8027aff3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_reddertex.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_reddertex.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_reddertex.png.import new file mode 100644 index 00000000..b5ec994f --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_reddertex.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d5rf5fwad060" +path="res://.godot/imported/WATER_ROOM_VER2_reddertex.png-5a928238a0dd5df694a9337f09825a39.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "474dbc67703db780c000ae66feec709a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_reddertex.png" +dest_files=["res://.godot/imported/WATER_ROOM_VER2_reddertex.png-5a928238a0dd5df694a9337f09825a39.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_yellow_grunge_glass.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_yellow_grunge_glass.png new file mode 100644 index 00000000..a64a3b72 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_yellow_grunge_glass.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_yellow_grunge_glass.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_yellow_grunge_glass.png.import new file mode 100644 index 00000000..ba9ff461 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_yellow_grunge_glass.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxoswedkvka65" +path="res://.godot/imported/WATER_ROOM_VER2_yellow_grunge_glass.png-d32d27b929ebeb698bf9a30eea0feddf.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "c465ab529f094408747aa3899e7f4d51" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_yellow_grunge_glass.png" +dest_files=["res://.godot/imported/WATER_ROOM_VER2_yellow_grunge_glass.png-d32d27b929ebeb698bf9a30eea0feddf.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM.glb index 380d4fef..c08e9646 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUM6N.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUM6N.png new file mode 100644 index 00000000..f11b1851 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUM6N.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUM6N.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUM6N.png.import new file mode 100644 index 00000000..33520514 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUM6N.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb2ng615d175a" +path="res://.godot/imported/14_A1_RAN'S ROOM_COLUM6N.png-b6f342b5e229f959e31ce144c1b91171.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "2a1126435cac415d70fa588f883518e0" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUM6N.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_COLUM6N.png-b6f342b5e229f959e31ce144c1b91171.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUMN3.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUMN3.jpg new file mode 100644 index 00000000..e84323a7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUMN3.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUMN3.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUMN3.jpg.import new file mode 100644 index 00000000..9a2975bd --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUMN3.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh8aoiaaj7and" +path="res://.godot/imported/14_A1_RAN'S ROOM_COLUMN3.jpg-984a057c2356c494647f0f2f613bc95c.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "3f97927b9fe1bfcc3a23e1438895a16f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_COLUMN3.jpg" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_COLUMN3.jpg-984a057c2356c494647f0f2f613bc95c.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR2.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR2.jpg new file mode 100644 index 00000000..036539e3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR2.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR2.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR2.jpg.import new file mode 100644 index 00000000..05207fb2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR2.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5nsf6wmkh1id" +path="res://.godot/imported/14_A1_RAN'S ROOM_FLOOR2.jpg-85f338014dac644899166d94697559a7.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "103b893019b9db866163e6816f845611" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR2.jpg" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_FLOOR2.jpg-85f338014dac644899166d94697559a7.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR4.png new file mode 100644 index 00000000..3ca8cfbd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR4.png.import new file mode 100644 index 00000000..e047bbc6 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://srrvcvlhpgu1" +path="res://.godot/imported/14_A1_RAN'S ROOM_FLOOR4.png-ccccbc90c4c7034c6356dce703dc5945.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "48f9b13899567d3d7e589593ed161806" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_FLOOR4.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_FLOOR4.png-ccccbc90c4c7034c6356dce703dc5945.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SA115.png.import new file mode 100644 index 00000000..5f1785fa --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c44xmro4rpfk1" +path="res://.godot/imported/14_A1_RAN'S ROOM_SA115.png-89e9ee66930e65eae8052d3e9473673d.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SA115.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_SA115.png-89e9ee66930e65eae8052d3e9473673d.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SNEK TILE.png.import new file mode 100644 index 00000000..11773ddf --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtwy8a1qvfpjd" +path="res://.godot/imported/14_A1_RAN'S ROOM_SNEK TILE.png-ef0d73eb0b414253741f93726d2fce7b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_SNEK TILE.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_SNEK TILE.png-ef0d73eb0b414253741f93726d2fce7b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_brick_corridor_corrected.png.import new file mode 100644 index 00000000..3c714a9c --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx50uv7r3cq5h" +path="res://.godot/imported/14_A1_RAN'S ROOM_brick_corridor_corrected.png-db3633f7be7e5c68611273889951f005.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_brick_corridor_corrected.png-db3633f7be7e5c68611273889951f005.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_concrete_0003_color_1k.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_concrete_0003_color_1k.png new file mode 100644 index 00000000..74ddada8 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_concrete_0003_color_1k.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_concrete_0003_color_1k.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_concrete_0003_color_1k.png.import new file mode 100644 index 00000000..20c2af67 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_concrete_0003_color_1k.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n7iyknxcrx85" +path="res://.godot/imported/14_A1_RAN'S ROOM_concrete_0003_color_1k.png-f15bdbbd944a23672fbff1a2bd4f68af.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "e9d0d15dfb27e2595fee02f430f1a3df" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_concrete_0003_color_1k.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_concrete_0003_color_1k.png-f15bdbbd944a23672fbff1a2bd4f68af.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_darkbrick.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_darkbrick.png new file mode 100644 index 00000000..f4c30a37 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_darkbrick.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_darkbrick.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_darkbrick.png.import new file mode 100644 index 00000000..1299b340 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_darkbrick.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kguhhejxogm4" +path="res://.godot/imported/14_A1_RAN'S ROOM_darkbrick.png-e8212453e66f9cd9d70d3394c2083433.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "68c10aa0eb12d3ce4e6477c9edb3c294" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_darkbrick.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_darkbrick.png-e8212453e66f9cd9d70d3394c2083433.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_inner_rock2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_inner_rock2.png new file mode 100644 index 00000000..0d0c9477 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_inner_rock2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_inner_rock2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_inner_rock2.png.import new file mode 100644 index 00000000..3c229ea5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_inner_rock2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5gqjp7pbrc7m" +path="res://.godot/imported/14_A1_RAN'S ROOM_inner_rock2.png-6d3a95dd8e15186b7f186831bbc060bb.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "e04fec2dfd0084e844b8f42edb103b4a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_inner_rock2.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_inner_rock2.png-6d3a95dd8e15186b7f186831bbc060bb.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_reddertex.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_reddertex.png new file mode 100644 index 00000000..8027aff3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_reddertex.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_reddertex.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_reddertex.png.import new file mode 100644 index 00000000..1346b95a --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_reddertex.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://prcfqdxx48o5" +path="res://.godot/imported/14_A1_RAN'S ROOM_reddertex.png-004ae5c04e7632c2deef33c6643a3093.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "474dbc67703db780c000ae66feec709a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_reddertex.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_reddertex.png-004ae5c04e7632c2deef33c6643a3093.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_yellow_grunge_glass.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_yellow_grunge_glass.png new file mode 100644 index 00000000..a64a3b72 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_yellow_grunge_glass.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_yellow_grunge_glass.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_yellow_grunge_glass.png.import new file mode 100644 index 00000000..65dfb77e --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_yellow_grunge_glass.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5djpsoo2pskf" +path="res://.godot/imported/14_A1_RAN'S ROOM_yellow_grunge_glass.png-304413605df8a859a2192db84a2fe1ff.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "c465ab529f094408747aa3899e7f4d51" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/14. Ran's Room/14_A1_RAN'S ROOM_yellow_grunge_glass.png" +dest_files=["res://.godot/imported/14_A1_RAN'S ROOM_yellow_grunge_glass.png-304413605df8a859a2192db84a2fe1ff.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM.glb index a08f2df1..006336fd 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_COLUM6N.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_COLUM6N.png new file mode 100644 index 00000000..f11b1851 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_COLUM6N.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_COLUM6N.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_COLUM6N.png.import new file mode 100644 index 00000000..da8ef5d8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_COLUM6N.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kinacrnf665g" +path="res://.godot/imported/16_A1_SESHATS_ROOM_COLUM6N.png-a7b7e4c83692093c50315970f1049f4b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "2a1126435cac415d70fa588f883518e0" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_COLUM6N.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_COLUM6N.png-a7b7e4c83692093c50315970f1049f4b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_FLOOR4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_FLOOR4.png new file mode 100644 index 00000000..3ca8cfbd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_FLOOR4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_FLOOR4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_FLOOR4.png.import new file mode 100644 index 00000000..a4d7b0b7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_FLOOR4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjtqsst4tfviq" +path="res://.godot/imported/16_A1_SESHATS_ROOM_FLOOR4.png-81bb3f6694f47f98058f88b1ab14a46c.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "48f9b13899567d3d7e589593ed161806" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_FLOOR4.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_FLOOR4.png-81bb3f6694f47f98058f88b1ab14a46c.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115-SMALL.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115-SMALL.jpg new file mode 100644 index 00000000..b6de75ce Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115-SMALL.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115-SMALL.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115-SMALL.jpg.import new file mode 100644 index 00000000..665cd6e3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115-SMALL.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rrcyr3knnlgg" +path="res://.godot/imported/16_A1_SESHATS_ROOM_SA115-SMALL.jpg-833bea4281cf915fb8f2c575e76b19ce.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "911914a4d08e3cd00c0e1bd4323866b6" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115-SMALL.jpg" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_SA115-SMALL.jpg-833bea4281cf915fb8f2c575e76b19ce.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115.png.import new file mode 100644 index 00000000..faefa6e2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr8jjf5kqrqaq" +path="res://.godot/imported/16_A1_SESHATS_ROOM_SA115.png-7c6d460b37e9aec1259a30be06fc28a1.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SA115.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_SA115.png-7c6d460b37e9aec1259a30be06fc28a1.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SNEK TILE.png.import new file mode 100644 index 00000000..eb74593d --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dec1c4x4mjs2u" +path="res://.godot/imported/16_A1_SESHATS_ROOM_SNEK TILE.png-21d870cdaaf54b66ca989de217ff5dd2.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_SNEK TILE.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_SNEK TILE.png-21d870cdaaf54b66ca989de217ff5dd2.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png index 8742d39e..62392dfe 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png.import index 8d67c356..22b9117b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_TILE4.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "7b53babe76d0484b408a519f8fc329b5" +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick_corridor_corrected.png.import new file mode 100644 index 00000000..fcd239f2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b55rmn2xmnjv5" +path="res://.godot/imported/16_A1_SESHATS_ROOM_brick_corridor_corrected.png-cf925707559ea27125b40a659a288d86.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_brick_corridor_corrected.png-cf925707559ea27125b40a659a288d86.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_greeen2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_greeen2.png new file mode 100644 index 00000000..197a4fbf Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_greeen2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_greeen2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_greeen2.png.import new file mode 100644 index 00000000..99513371 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_greeen2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3cjd86rmojjm" +path="res://.godot/imported/16_A1_SESHATS_ROOM_greeen2.png-dbdcc0c9b64534ac19ee7b249fb1b594.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "d706d78841685bb2005ce12eb6a4c8da" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_greeen2.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_greeen2.png-dbdcc0c9b64534ac19ee7b249fb1b594.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png.import index 8294fdb1..df4c63e4 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_inner_rock2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_inner_rock2.png new file mode 100644 index 00000000..0d0c9477 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_inner_rock2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_inner_rock2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_inner_rock2.png.import new file mode 100644 index 00000000..6ad8f778 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_inner_rock2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4byrouxpqxu7" +path="res://.godot/imported/16_A1_SESHATS_ROOM_inner_rock2.png-c2c7826afa17c1e82be96438fd1892b0.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "e04fec2dfd0084e844b8f42edb103b4a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_inner_rock2.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_inner_rock2.png-c2c7826afa17c1e82be96438fd1892b0.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_mother.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_mother.png new file mode 100644 index 00000000..cad5ef6e Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_mother.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_mother.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_mother.png.import new file mode 100644 index 00000000..241f1403 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_mother.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhic2ah2of2rx" +path="res://.godot/imported/16_A1_SESHATS_ROOM_mother.png-14c11d269386132916774c548a076475.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "0557edb32f31fcbcdb10c4c6f0694eab" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_mother.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_mother.png-14c11d269386132916774c548a076475.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_outside_desert.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_outside_desert.png new file mode 100644 index 00000000..8bf91ba7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_outside_desert.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_outside_desert.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_outside_desert.png.import new file mode 100644 index 00000000..7dcb2c4a --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_outside_desert.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b82k1gmrd6eak" +path="res://.godot/imported/16_A1_SESHATS_ROOM_outside_desert.png-8aa7cfff4ed6a9cf8b566a1e1dbe1797.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "c9fc423b08123f75d66d137999d81cb9" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_outside_desert.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_outside_desert.png-8aa7cfff4ed6a9cf8b566a1e1dbe1797.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_reddertex.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_reddertex.png new file mode 100644 index 00000000..8027aff3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_reddertex.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_reddertex.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_reddertex.png.import new file mode 100644 index 00000000..c6b6b5fb --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_reddertex.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2gdu4i5lafjo" +path="res://.godot/imported/16_A1_SESHATS_ROOM_reddertex.png-dcc2328167d6169290dfb574ccc806ed.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "474dbc67703db780c000ae66feec709a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_reddertex.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_reddertex.png-dcc2328167d6169290dfb574ccc806ed.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_rubble-layer2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_rubble-layer2.png new file mode 100644 index 00000000..12726093 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_rubble-layer2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_rubble-layer2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_rubble-layer2.png.import new file mode 100644 index 00000000..c35d0eed --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_rubble-layer2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsxpv3aeblltm" +path="res://.godot/imported/16_A1_SESHATS_ROOM_rubble-layer2.png-0ed7b96c0b8f33893de87cf1a9fbe191.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "e09ae6bda63b825539059a33e955779d" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_rubble-layer2.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_rubble-layer2.png-0ed7b96c0b8f33893de87cf1a9fbe191.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_yellow_grunge_glass.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_yellow_grunge_glass.png new file mode 100644 index 00000000..a64a3b72 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_yellow_grunge_glass.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_yellow_grunge_glass.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_yellow_grunge_glass.png.import new file mode 100644 index 00000000..a076f0de --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_yellow_grunge_glass.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5r57jlyptndg" +path="res://.godot/imported/16_A1_SESHATS_ROOM_yellow_grunge_glass.png-8844ec8d234f6e2e95828a61d744f04f.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "c465ab529f094408747aa3899e7f4d51" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/16. Seshat's Room/16_A1_SESHATS_ROOM_yellow_grunge_glass.png" +dest_files=["res://.godot/imported/16_A1_SESHATS_ROOM_yellow_grunge_glass.png-8844ec8d234f6e2e95828a61d744f04f.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM.glb index 67427726..987ae7c2 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_Green mottled.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_Green mottled.png new file mode 100644 index 00000000..578edd8a Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_Green mottled.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_Green mottled.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_Green mottled.png.import new file mode 100644 index 00000000..56e476c0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_Green mottled.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buwuc0p6jcjhl" +path="res://.godot/imported/17_A1_GESTHEMIIS_ROOM_Green mottled.png-abd13a6d5c86f816cffc1ecb6f9cd258.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "943ac18b31c1c6519e7d5e603d3e3164" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_Green mottled.png" +dest_files=["res://.godot/imported/17_A1_GESTHEMIIS_ROOM_Green mottled.png-abd13a6d5c86f816cffc1ecb6f9cd258.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png new file mode 100644 index 00000000..896be0ca Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png.import new file mode 100644 index 00000000..95a425fd --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg020hilefyu" +path="res://.godot/imported/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png-db2727714da82bbcac39ffba56da83f5.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "495aba3b07a3a6534688e0d2545c501f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png" +dest_files=["res://.godot/imported/17_A1_GESTHEMIIS_ROOM_MOSAIC-ITALY.png-db2727714da82bbcac39ffba56da83f5.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SA115.png.import new file mode 100644 index 00000000..a8b8817d --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dliwvtw0708s" +path="res://.godot/imported/17_A1_GESTHEMIIS_ROOM_SA115.png-06eb48ce1e0523f27767ccd2fa178f3b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SA115.png" +dest_files=["res://.godot/imported/17_A1_GESTHEMIIS_ROOM_SA115.png-06eb48ce1e0523f27767ccd2fa178f3b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png.import new file mode 100644 index 00000000..669e0846 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsm4j7a2s4nqq" +path="res://.godot/imported/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png-620c53aaccf49a09f114130f53bf320e.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png" +dest_files=["res://.godot/imported/17_A1_GESTHEMIIS_ROOM_SNEK TILE.png-620c53aaccf49a09f114130f53bf320e.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_TILE4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_TILE4.png new file mode 100644 index 00000000..62392dfe Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_TILE4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_TILE4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_TILE4.png.import new file mode 100644 index 00000000..ad663162 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_TILE4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6doyqcu6wre7" +path="res://.godot/imported/17_A1_GESTHEMIIS_ROOM_TILE4.png-36ec368119e35abb57490624c5c700b5.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "9635fa0f67978d0bbc3cd49048bec1c6" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_TILE4.png" +dest_files=["res://.godot/imported/17_A1_GESTHEMIIS_ROOM_TILE4.png-36ec368119e35abb57490624c5c700b5.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png new file mode 100644 index 00000000..23fb2eb2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png.import new file mode 100644 index 00000000..60ad30fc --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3q2csvou7w3p" +path="res://.godot/imported/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png-2d59d84e384436cdb87b196d4274f21f.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "01d2dbbb6734168b9ef81eb42bfdb764" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png" +dest_files=["res://.godot/imported/17_A1_GESTHEMIIS_ROOM_brick_corridor_corrected.png-2d59d84e384436cdb87b196d4274f21f.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_greeen2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_greeen2.png new file mode 100644 index 00000000..197a4fbf Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_greeen2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_greeen2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_greeen2.png.import new file mode 100644 index 00000000..922e6940 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_greeen2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blqjkwsxjqbyy" +path="res://.godot/imported/17_A1_GESTHEMIIS_ROOM_greeen2.png-4c14900722376d6e98b7433b42707348.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "d706d78841685bb2005ce12eb6a4c8da" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_greeen2.png" +dest_files=["res://.godot/imported/17_A1_GESTHEMIIS_ROOM_greeen2.png-4c14900722376d6e98b7433b42707348.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png.import index 75601de5..d9f099a3 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png index 8679d785..521d1584 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png.import index f9686410..8e3581b6 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/17. Gesthemii's Room/17_A1_GESTHEMIIS_ROOM_motapo.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "71cf56639c296ea38cc62fd74f9fe6d1" +"md5": "50776c4f461a0f8f9e866ff539840adb" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A.glb index 67bc0b58..8d75aa6e 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_FLOOR4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_FLOOR4.png new file mode 100644 index 00000000..3ca8cfbd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_FLOOR4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_FLOOR4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_FLOOR4.png.import new file mode 100644 index 00000000..326fe3d3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_FLOOR4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eqr7urptkbw" +path="res://.godot/imported/19_A1_FLOOR_EXIT_A_FLOOR4.png-d6e0486a64d77c98a04811e74b64777b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "48f9b13899567d3d7e589593ed161806" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_FLOOR4.png" +dest_files=["res://.godot/imported/19_A1_FLOOR_EXIT_A_FLOOR4.png-d6e0486a64d77c98a04811e74b64777b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SA115.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SA115.png new file mode 100644 index 00000000..a0d9d3b7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SA115.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SA115.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SA115.png.import new file mode 100644 index 00000000..fe3faa85 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SA115.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnjp7bgrn7rj2" +path="res://.godot/imported/19_A1_FLOOR_EXIT_A_SA115.png-56c905a0ddaecd66f82bb3cbbd9a6b2b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "fabb9289c82f142ecb54e8a2667d6e57" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SA115.png" +dest_files=["res://.godot/imported/19_A1_FLOOR_EXIT_A_SA115.png-56c905a0ddaecd66f82bb3cbbd9a6b2b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SNEK TILE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SNEK TILE.png new file mode 100644 index 00000000..e2b87609 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SNEK TILE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SNEK TILE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SNEK TILE.png.import new file mode 100644 index 00000000..c73539e9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SNEK TILE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2grbi3wvej4d" +path="res://.godot/imported/19_A1_FLOOR_EXIT_A_SNEK TILE.png-b91bc06b47ef2011e45306f2093ed1ad.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8b33e39ce47b4b2d5f3be8dd942326e2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_SNEK TILE.png" +dest_files=["res://.godot/imported/19_A1_FLOOR_EXIT_A_SNEK TILE.png-b91bc06b47ef2011e45306f2093ed1ad.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png new file mode 100644 index 00000000..c5aaaee4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png.import new file mode 100644 index 00000000..93417acd --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvr7cujij6l2j" +path="res://.godot/imported/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png-9bb2a0a0017b000331bf0f3ad38a259d.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "227975486c1181a9276cf8c8194791a5" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png" +dest_files=["res://.godot/imported/19_A1_FLOOR_EXIT_A_STONE_PANEL_1png.png-9bb2a0a0017b000331bf0f3ad38a259d.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png index 4ebf4b78..52c060e4 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png.import index a176e302..f621993d 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set A/19. Floor Exit A/19_A1_FLOOR_EXIT_A_hand-tiile.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "d3ae9d17bf47107d7c4fdd341980bd5a" +"md5": "748095e78d4b53a700b06c6a8a75ace9" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C.glb index 43553ea2..6c7f0fa6 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png new file mode 100644 index 00000000..de341d65 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png.import new file mode 100644 index 00000000..6b605694 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vkq5utfq5b5u" +path="res://.godot/imported/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png-f2397f72db00339d0f3bc264b2a33feb.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "eb893a496c2c6a9fff5bfa9e12d7e83f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/20. Antechamber C/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png" +dest_files=["res://.godot/imported/20_A2_ANTECHAMBER_TYPE_C_swirled_column _AREA222.png-f2397f72db00339d0f3bc264b2a33feb.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM.glb index bf6a98ab..2cf8ef1b 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png index 1540259e..57085b82 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png.import index 6728fc40..1de58aeb 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/21. Gallery Room/21_A2_GALLERY_ROOM_drae.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "40b3cbb47d4a6da599b13ba6b11adb4c" +"md5": "5d06f219771bb8f1df6212d307e16d11" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B.glb index 31945a25..d7e1c5b1 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png new file mode 100644 index 00000000..d05ba3cd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png.import new file mode 100644 index 00000000..b8d56113 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxfujira8sw8n" +path="res://.godot/imported/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png-7d264fd717d8c8d55ca938d976c1971a.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "139c50444b8c5bb604e01ab7f78d241c" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png" +dest_files=["res://.godot/imported/22_A2_PIT_ROOM_B_AREA_2_MAIN_STON2E.png-7d264fd717d8c8d55ca938d976c1971a.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg new file mode 100644 index 00000000..0561a4a1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg.import new file mode 100644 index 00000000..0dea194c --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3or581ounsuq" +path="res://.godot/imported/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg-f1a58c6d788c3e49bb3e2ff8e8d96671.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "9addb3d0b9b65c31722bce6151085b82" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg" +dest_files=["res://.godot/imported/22_A2_PIT_ROOM_B_CEILING_AREA2.jpg-f1a58c6d788c3e49bb3e2ff8e8d96671.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png new file mode 100644 index 00000000..dc1ea73c Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png.import new file mode 100644 index 00000000..5467b13b --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co502deaqpgy7" +path="res://.godot/imported/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png-efbb2618a3567142068e9cb1065768e2.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "a571ea9259cd4bdb7a8ab58b7439b400" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png" +dest_files=["res://.godot/imported/22_A2_PIT_ROOM_B_DARKER_STONE_AREA_2.png-efbb2618a3567142068e9cb1065768e2.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area2_darker_brick.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area2_darker_brick.png new file mode 100644 index 00000000..4bba6d86 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area2_darker_brick.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area2_darker_brick.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area2_darker_brick.png.import new file mode 100644 index 00000000..1b2567a5 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area2_darker_brick.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duetxww5qa7yo" +path="res://.godot/imported/22_A2_PIT_ROOM_B_area2_darker_brick.png-517237726a0bb337fe8902300c8afe2a.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "814ddc2f3a61f533fa927c9046be7c8b" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area2_darker_brick.png" +dest_files=["res://.godot/imported/22_A2_PIT_ROOM_B_area2_darker_brick.png-517237726a0bb337fe8902300c8afe2a.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_tile_3.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_tile_3.png new file mode 100644 index 00000000..f479712e Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_tile_3.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_tile_3.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_tile_3.png.import new file mode 100644 index 00000000..59a10d85 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_tile_3.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fprraefd71v0" +path="res://.godot/imported/22_A2_PIT_ROOM_B_area_2_tile_3.png-611515d482cf4e5fba91dc4897379996.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "819a5d534963bc6ec1b5baf551805ca8" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_tile_3.png" +dest_files=["res://.godot/imported/22_A2_PIT_ROOM_B_area_2_tile_3.png-611515d482cf4e5fba91dc4897379996.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D.glb index 893fbe51..8b9b53be 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg new file mode 100644 index 00000000..0561a4a1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg.import new file mode 100644 index 00000000..05463514 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqh3hv4c27u18" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg-46620eb9beb5ba5b44ced0a5ae850f89.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "9addb3d0b9b65c31722bce6151085b82" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_CEILING_AREA2.jpg-46620eb9beb5ba5b44ced0a5ae850f89.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png new file mode 100644 index 00000000..25a88629 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png.import new file mode 100644 index 00000000..6d889fb6 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btw686bs5rcq3" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png-067195803a95d68948757f434268de1d.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "38ef11cea3eaf648a0118ef91b3526c2" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_RUBBLE_1.png-067195803a95d68948757f434268de1d.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg new file mode 100644 index 00000000..2323e5c1 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg.import new file mode 100644 index 00000000..214c535b --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db7yrpn7ds52v" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg-56febf162e7ba007e9e1117ac5399207.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "f7f09a4c0799b488c95cf6389716ac71" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_SD137.jpg-56febf162e7ba007e9e1117ac5399207.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png new file mode 100644 index 00000000..f479712e Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png.import new file mode 100644 index 00000000..f6ce3587 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxxelqfihbj4w" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png-d067b9931401715abf6cd7569386eb6e.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "819a5d534963bc6ec1b5baf551805ca8" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_area_2_tile_3.png-d067b9931401715abf6cd7569386eb6e.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block2.png new file mode 100644 index 00000000..bf52aed5 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block2.png.import new file mode 100644 index 00000000..98ec8d12 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0lbnl8hdfn2a" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_block2.png-f51ac6eeced9c8f4eef9e79ae47a1025.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "d1e467ed11c1033c043e22eeefb67920" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block2.png" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_block2.png-f51ac6eeced9c8f4eef9e79ae47a1025.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block3.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block3.png new file mode 100644 index 00000000..8994cd19 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block3.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block3.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block3.png.import new file mode 100644 index 00000000..06bf22b9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block3.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sp3r63mxl804" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_block3.png-1ab779d8cd6405e4d514e00f49e38121.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "8bfb76924d5585ed4ac9960d6072ff2f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block3.png" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_block3.png-1ab779d8cd6405e4d514e00f49e38121.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block4.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block4.png new file mode 100644 index 00000000..f9d88414 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block4.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block4.png.import new file mode 100644 index 00000000..00b4e399 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block4.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cye2bshtv6s7m" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_block4.png-36c4b4a0805c9b5cf7b72c8acebb4009.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "861fb6d8a76f3d19b76d38e6eb83e58b" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_block4.png" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_block4.png-36c4b4a0805c9b5cf7b72c8acebb4009.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png new file mode 100644 index 00000000..66dc9b8c Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png.import new file mode 100644 index 00000000..e5aa4e9f --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drbjguto4phbt" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png-1c78196e2dcd00fc2adddb89ff9658bd.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "1d8d5be55287e08889d4d3f61a5e6472" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_eyeblock.png-1c78196e2dcd00fc2adddb89ff9658bd.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_motapo.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_motapo.png new file mode 100644 index 00000000..521d1584 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_motapo.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_motapo.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_motapo.png.import new file mode 100644 index 00000000..f7f73234 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_motapo.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd0uoqltdmkhb" +path="res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_motapo.png-2fc351d64fab5073f0903567f507f6c6.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "50776c4f461a0f8f9e866ff539840adb" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/23. Antechamber D/23_A2_ANTECHAMBER_TYPE_D_motapo.png" +dest_files=["res://.godot/imported/23_A2_ANTECHAMBER_TYPE_D_motapo.png-2fc351d64fab5073f0903567f507f6c6.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B.glb index 45a5b284..7251cd73 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/24. Balcony Room B/24_A2_BALCONY_ROOM_B.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM.glb index 26bd4577..582440b9 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png new file mode 100644 index 00000000..de341d65 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png.import new file mode 100644 index 00000000..15688ae0 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5qqlbjmy5grk" +path="res://.godot/imported/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png-a29d257cc586935e3228208738af0dc8.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "eb893a496c2c6a9fff5bfa9e12d7e83f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/25. Pedestal Room/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png" +dest_files=["res://.godot/imported/25_A2_PEDESTAL_ROOM_swirled_column _AREA222.png-a29d257cc586935e3228208738af0dc8.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B.glb index 70ab53e6..73138346 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png new file mode 100644 index 00000000..de341d65 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png.import new file mode 100644 index 00000000..0eb15468 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr60o5qhyq8qw" +path="res://.godot/imported/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png-8c635ae5a95c83fad2d3edea696fd1c6.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "eb893a496c2c6a9fff5bfa9e12d7e83f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/26. Item Transfer Room B/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png" +dest_files=["res://.godot/imported/26_A2_ITEM_TRANSFER_ROOM_B_swirled_column _AREA222.png-8c635ae5a95c83fad2d3edea696fd1c6.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B.glb index 2634e5e5..708914b1 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B.glb index 8aa0575c..888c1304 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png new file mode 100644 index 00000000..763d0dee Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png.import new file mode 100644 index 00000000..d81f41b3 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjxy5xsbw0rae" +path="res://.godot/imported/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png-9fa1552214c232bc835cd7aae4f3b815.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "1acf4b54983678f4cf4c553acbb09982" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png" +dest_files=["res://.godot/imported/28_A2_LONG_ROOM_B_AREA2_BLOCKED.png-9fa1552214c232bc835cd7aae4f3b815.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_TILE-5.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_TILE-5.png new file mode 100644 index 00000000..f8d7f8e9 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_TILE-5.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_TILE-5.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_TILE-5.png.import new file mode 100644 index 00000000..07d605e2 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_TILE-5.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uibkaklkx1oi" +path="res://.godot/imported/28_A2_LONG_ROOM_B_AREA2_TILE-5.png-36eeea4134dc1ccceb4be925806a30f7.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "3593314383003b535dc027755dc49ea7" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA2_TILE-5.png" +dest_files=["res://.godot/imported/28_A2_LONG_ROOM_B_AREA2_TILE-5.png-36eeea4134dc1ccceb4be925806a30f7.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png new file mode 100644 index 00000000..d05ba3cd Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png.import new file mode 100644 index 00000000..a0d34846 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbepmdai3mc8l" +path="res://.godot/imported/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png-c89fcbb956494d4c03125a20908b54a0.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "139c50444b8c5bb604e01ab7f78d241c" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png" +dest_files=["res://.godot/imported/28_A2_LONG_ROOM_B_AREA_2_MAIN_STON2E.png-c89fcbb956494d4c03125a20908b54a0.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_inner_rock2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_inner_rock2.png new file mode 100644 index 00000000..0d0c9477 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_inner_rock2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_inner_rock2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_inner_rock2.png.import new file mode 100644 index 00000000..bc2160a7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_inner_rock2.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxxoskjtuh46l" +path="res://.godot/imported/28_A2_LONG_ROOM_B_inner_rock2.png-bf7187d802b448b2bdf9828acef3a786.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "e04fec2dfd0084e844b8f42edb103b4a" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/28. Long Room B/28_A2_LONG_ROOM_B_inner_rock2.png" +dest_files=["res://.godot/imported/28_A2_LONG_ROOM_B_inner_rock2.png-bf7187d802b448b2bdf9828acef3a786.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM.glb index 72101ee5..25b61a18 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/29. Column Circle Room/29_A2_COLUMN_CIRCLE_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM.glb index 8f668b98..2cb0f5bb 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png index b5a78cc6..8e46a15d 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png.import index 9901eaa4..116c1b48 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_WHITE_TILE2.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "302bc6fbaf043ca91f183c6809052468" +"md5": "c01abbdce6f043b60cd28e6f386bf90d" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg new file mode 100644 index 00000000..d3264566 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg.import new file mode 100644 index 00000000..abccc651 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh1i4ncaan1vt" +path="res://.godot/imported/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg-3390a235b4c7d0052dac3e218b7dd3f3.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "c887e8428ade4b351942da4003d1076d" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/32. Proscenium's Room/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg" +dest_files=["res://.godot/imported/32_A2_PROSCENIUMS_ROOM_floral_single_tile.jpg-3390a235b4c7d0052dac3e218b7dd3f3.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM.glb index 72cfa777..160d0457 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png new file mode 100644 index 00000000..00c3a3a5 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png.import new file mode 100644 index 00000000..bf6b43a8 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7swkgh03tgad" +path="res://.godot/imported/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png-6ee063540f5ad4371a4c0ba00d31b98c.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "307b116080fe0254862e45395c4d4f0b" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/33. Puer's Room/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png" +dest_files=["res://.godot/imported/33_A2_PUERS_ROOM_AREA2_WHITE_CONKRETE.png-6ee063540f5ad4371a4c0ba00d31b98c.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/35_A2_GUIDANCE_FLOOR.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/35_A2_GUIDANCE_FLOOR.glb index 184ca9b0..f3827ed1 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/35_A2_GUIDANCE_FLOOR.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/35_A2_GUIDANCE_FLOOR.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B.glb index 9dee0184..80cd4112 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png new file mode 100644 index 00000000..00c3a3a5 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png.import new file mode 100644 index 00000000..19f0693f --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://edwqj8rjsjhb" +path="res://.godot/imported/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png-40d0b5049f72a4145e84fed9c3c90215.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "307b116080fe0254862e45395c4d4f0b" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png" +dest_files=["res://.godot/imported/38_A2_FLOOR_EXIT_B_AREA2_WHITE_CONKRETE.png-40d0b5049f72a4145e84fed9c3c90215.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_WHITE_floor.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_WHITE_floor.png new file mode 100644 index 00000000..d68f6238 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_WHITE_floor.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_WHITE_floor.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_WHITE_floor.png.import new file mode 100644 index 00000000..d753bc13 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_WHITE_floor.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch430guncg8jn" +path="res://.godot/imported/38_A2_FLOOR_EXIT_B_WHITE_floor.png-44ee0969a91ff1efb2f43ef95f90ba2b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "67f0faf24a06a85088c0ff02c398e755" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_WHITE_floor.png" +dest_files=["res://.godot/imported/38_A2_FLOOR_EXIT_B_WHITE_floor.png-44ee0969a91ff1efb2f43ef95f90ba2b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area2_darker_brick.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area2_darker_brick.png new file mode 100644 index 00000000..4bba6d86 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area2_darker_brick.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area2_darker_brick.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area2_darker_brick.png.import new file mode 100644 index 00000000..3d059503 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area2_darker_brick.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lrbg28i0xwfg" +path="res://.godot/imported/38_A2_FLOOR_EXIT_B_area2_darker_brick.png-3eb1a8ef983ddca06d9271aef83959ea.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "814ddc2f3a61f533fa927c9046be7c8b" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_area2_darker_brick.png" +dest_files=["res://.godot/imported/38_A2_FLOOR_EXIT_B_area2_darker_brick.png-3eb1a8ef983ddca06d9271aef83959ea.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg new file mode 100644 index 00000000..d3264566 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg.import new file mode 100644 index 00000000..654d8315 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kt2yo0t6trmc" +path="res://.godot/imported/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg-65fc9453a2580c44a47bd5972ff9fbfc.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "c887e8428ade4b351942da4003d1076d" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg" +dest_files=["res://.godot/imported/38_A2_FLOOR_EXIT_B_floral_single_tile.jpg-65fc9453a2580c44a47bd5972ff9fbfc.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_lime_hand_relief.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_lime_hand_relief.png new file mode 100644 index 00000000..04fef089 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_lime_hand_relief.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_lime_hand_relief.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_lime_hand_relief.png.import new file mode 100644 index 00000000..f89d951a --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_lime_hand_relief.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwy07jmv2636r" +path="res://.godot/imported/38_A2_FLOOR_EXIT_B_lime_hand_relief.png-b38085f973792d0a69c3e428c057c008.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "1493c571147fcafccb4754b97c33ad1f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_lime_hand_relief.png" +dest_files=["res://.godot/imported/38_A2_FLOOR_EXIT_B_lime_hand_relief.png-b38085f973792d0a69c3e428c057c008.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png new file mode 100644 index 00000000..de341d65 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png.import new file mode 100644 index 00000000..bc058732 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boo1uo3d4vh27" +path="res://.godot/imported/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png-eede72b4086c474f295f1fadf9e1778b.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "eb893a496c2c6a9fff5bfa9e12d7e83f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/38. Floor Exit B/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png" +dest_files=["res://.godot/imported/38_A2_FLOOR_EXIT_B_swirled_column _AREA222.png-eede72b4086c474f295f1fadf9e1778b.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2.glb b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2.glb index 1359ad11..cc1c06de 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2.glb and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2.glb differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png new file mode 100644 index 00000000..d44a4235 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png.import new file mode 100644 index 00000000..7c8f3eb9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd14xja6kx1vu" +path="res://.godot/imported/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png-064f879c78ec6515fac538063f9fccb1.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "0d57b7d066fe1541e5962fe044e336ff" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png" +dest_files=["res://.godot/imported/39_A2_GESTHEMI'S ROOM_2_RUSTY IRON.png-064f879c78ec6515fac538063f9fccb1.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png index 8679d785..521d1584 100644 Binary files a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png.import index 940d682c..4c6a47f0 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_motapo.png.import @@ -8,7 +8,7 @@ metadata={ "vram_texture": false } generator_parameters={ -"md5": "71cf56639c296ea38cc62fd74f9fe6d1" +"md5": "50776c4f461a0f8f9e866ff539840adb" } [deps] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png new file mode 100644 index 00000000..de341d65 Binary files /dev/null and b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png differ diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png.import new file mode 100644 index 00000000..8e90803c --- /dev/null +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xiulsvfe0hya" +path="res://.godot/imported/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png-75bd110f4e6d687b39319b46f7296fce.ctex" +metadata={ +"vram_texture": false +} +generator_parameters={ +"md5": "eb893a496c2c6a9fff5bfa9e12d7e83f" +} + +[deps] + +source_file="res://src/map/dungeon/models/Set B/39. Gesthemii's Room 2/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png" +dest_files=["res://.godot/imported/39_A2_GESTHEMI'S ROOM_2_swirled_column _AREA222.png-75bd110f4e6d687b39319b46f7296fce.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=true +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 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/15. Boss Floor A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/15. Boss Floor A.tscn index 6e0821a5..3b6b237c 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/15. Boss Floor A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/15. Boss Floor A.tscn @@ -64,7 +64,6 @@ shadow_mesh = SubResource("ArrayMesh_4eou0") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jcrt6"] resource_name = "SWIRL" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("2_06eum") texture_filter = 2 @@ -74,113 +73,95 @@ resource_name = "MOTHER.002" transparency = 2 alpha_scissor_threshold = 0.5 alpha_antialiasing_mode = 0 -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("3_aiyhv") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x4ioo"] resource_name = "BRICK 3" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("4_gg1gw") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fklur"] resource_name = "FLOOR 1.001" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("5_3yvkn") texture_filter = 2 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_t2dkh"] resource_name = "WALL TILE 1" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("6_ayffp") texture_filter = 2 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mhxry"] resource_name = "TILE 5" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("7_mucxn") texture_filter = 2 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qjhhv"] resource_name = "TILE 4.001" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("8_x36ik") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_knbsp"] resource_name = "COLUMN" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("9_peiep") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rb146"] resource_name = "BLUE LIGHT" -cull_mode = 0 shading_mode = 0 albedo_color = Color(0.0408016, 0.822256, 0.810541, 1) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5m22i"] resource_name = "BRICK CORRIDOR" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("10_p5e8a") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6o5w8"] resource_name = "Dark Brick" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("11_rssw8") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_656uk"] resource_name = "LOWER CORRIDOR TRIM" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("12_2niov") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gs3lq"] resource_name = "COLUMN 2" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("13_cvs65") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ub4gm"] resource_name = "BRICK" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("4_gg1gw") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3dv1r"] resource_name = "HAND TILE.004" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("14_l0jay") texture_filter = 2 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6sui2"] resource_name = "BRICK 3.003" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("4_gg1gw") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wdnpw"] resource_name = "STONE PANEL 2.004" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("15_0qf8c") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_t0v5k"] resource_name = "TILE 2" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("16_bgmrw") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rnlrr"] resource_name = "STONE PANEL 1.002" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("17_0tjgo") texture_filter = 2 @@ -188,7 +169,6 @@ texture_filter = 2 [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_f5xan"] resource_name = "CEILING 1.007" transparency = 4 -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("18_ymsfi") @@ -698,7 +678,6 @@ shadow_mesh = SubResource("ArrayMesh_nweei") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xm4ti"] resource_name = "HAND CYCLE" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("19_btt2p") @@ -796,7 +775,6 @@ shadow_mesh = SubResource("ArrayMesh_2xh7e") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_08cpb"] resource_name = "Material.018" transparency = 4 -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("20_ibc11") @@ -1175,7 +1153,6 @@ resource_name = "Material.030" transparency = 2 alpha_scissor_threshold = 0.5 alpha_antialiasing_mode = 0 -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("21_a3et2") @@ -1216,7 +1193,6 @@ resource_name = "Material" transparency = 2 alpha_scissor_threshold = 0.5 alpha_antialiasing_mode = 0 -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("22_4tjx7") @@ -1972,9 +1948,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -102.157, -2.30863, 13.0139) unique_name_in_owner = true transform = Transform3D(0.15, 0, 0, 0, 0.15, 0, 0, 0, 0.15, -102.157, -0.510939, 13.0139) visible = false -PrimaryAttackElementalType = null -PrimaryAttackElementalDamageBonus = null -_movementSpeed = null [node name="OxFaceStatue" parent="Room" instance=ExtResource("26_futcf")] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn index 0d6b4b11..17ee1762 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn @@ -1208,14 +1208,12 @@ size = Vector3(32.0834, 10, 35.8235) [node name="CSGBox" type="CSGBox3D" parent="Doors"] transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, -17.9446, -0.0155478, 0.01906) -visible = false use_collision = true size = Vector3(4.05, 4.05, 0.01) material = SubResource("StandardMaterial3D_51rrf") [node name="DOOR" type="CSGBox3D" parent="Doors/CSGBox"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0.0686455) -visible = false material_override = SubResource("StandardMaterial3D_alrge") operation = 2 size = Vector3(4, 4, 2) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/18. Corridor A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/18. Corridor A.tscn index 9a742c2e..0db99a07 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/18. Corridor A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/18. Corridor A.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=46 format=4 uid="uid://bn4gslp2gk8ds"] +[gd_scene load_steps=48 format=4 uid="uid://bn4gslp2gk8ds"] [ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="1_lepkf"] [ext_resource type="Texture2D" uid="uid://crsw35eypj6ry" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_WALL TILE 1.jpg" id="2_jmyyj"] @@ -9,6 +9,7 @@ [ext_resource type="Texture2D" uid="uid://db1toc6kj5uq8" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_darkbrick.png" id="6_liffc"] [ext_resource type="Texture2D" uid="uid://3f43egfmyocx" path="res://src/map/dungeon/models/Set A/18. Corridor A/18_A1_CORRIDOR_A_concrete_0003_color_1k.png" id="7_3kayh"] [ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="9_7a87o"] +[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="9_adgr5"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jhg27"] resource_name = "WALL.007" @@ -447,9 +448,8 @@ radius = 0.1 [sub_resource type="BoxShape3D" id="BoxShape3D_xywry"] size = Vector3(4, 0.557617, 4) -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2qrwe"] +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3j8ld"] transparency = 1 -shading_mode = 0 albedo_color = Color(1, 1, 1, 0) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1huxf"] @@ -457,185 +457,7 @@ resource_name = "BOTTOM TRIM.007" shading_mode = 0 albedo_texture = ExtResource("5_qnt5r") -[sub_resource type="ArrayMesh" id="ArrayMesh_p4f4g"] -_surfaces = [{ -"aabb": AABB(-0.984553, -23.5008, 1.0428, 2.00022, 24.4466, 1e-05), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAA=") -}, { -"aabb": AABB(-0.984553, -36.1633, 1.0428, 2.00022, 12.6625, 1e-05), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAA=") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_ux4sw"] -resource_name = "18_A1_CORRIDOR_A_Cube_003" -_surfaces = [{ -"aabb": AABB(-0.984553, -23.5008, 1.0428, 2.00022, 24.4466, 1e-05), -"attribute_data": PackedByteArray("AAD/////AAAAAAAA/v///w=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_jhg27"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAD/v/+//7//v/+//7//v/+/") -}, { -"aabb": AABB(-0.984553, -36.1633, 1.0428, 2.00022, 12.6625, 1e-05), -"attribute_data": PackedByteArray("//////9//3//f///////fw=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_1huxf"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(2, 2, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAD///9/////f////3////9/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_p4f4g") - -[sub_resource type="BoxShape3D" id="BoxShape3D_gbjb2"] -size = Vector3(4.40063, 4, 0.195191) - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lepkf"] -transparency = 1 -albedo_color = Color(1, 1, 1, 0) - -[sub_resource type="ArrayMesh" id="ArrayMesh_te6g1"] -_surfaces = [{ -"aabb": AABB(-0.984553, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAP//AAAAAP//AAAAAAAAAAAAAAAAAAD/////AAA=") -}, { -"aabb": AABB(-0.984553, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAP//AAAAAP//AAAAAAAAAAAAAAAAAAD/////AAA=") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_tmqha"] -resource_name = "18_A1_CORRIDOR_A_Cube_004" -_surfaces = [{ -"aabb": AABB(-0.984553, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), -"attribute_data": PackedByteArray("AAD/////AAAAAAAA/////w=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_jhg27"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAP//qioAAP//AACqKgAAAAAAAKoqAAD/////qiqqKqoqqiqqKqoqqiqqKqoq") -}, { -"aabb": AABB(-0.984553, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), -"attribute_data": PackedByteArray("/3///////3///////3//fw=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_1huxf"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(2, 2, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAP///78AAP//AAD/vwAAAAAAAP+/AAD//////7//fwAA/38AAP9/AAD/fwAA") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_te6g1") - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0m8h3"] -transparency = 1 -albedo_color = Color(1, 1, 1, 0) - -[sub_resource type="ArrayMesh" id="ArrayMesh_5chhi"] -_surfaces = [{ -"aabb": AABB(1.01566, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAAAAAAAP////8AAAAAAAD//wAAAAD//wAAAAA=") -}, { -"aabb": AABB(1.01566, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAAAAAAAP////8AAAAAAAD//wAAAAD//wAAAAA=") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_o04ue"] -resource_name = "18_A1_CORRIDOR_A_Cube_001" -_surfaces = [{ -"aabb": AABB(1.01566, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), -"attribute_data": PackedByteArray("AAD/////AAAAAAAA/////w=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_jhg27"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAAqioAAP////+qKgAAAAD//6oqAAD//wAAqipU1VTVVNVU1VTVVNVU1VTV") -}, { -"aabb": AABB(1.01566, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), -"attribute_data": PackedByteArray("//////9//3//f///////fw=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_1huxf"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(2, 2, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAAAAAAAP////8AAAAAAAD//wAAAAD//wAAAAD/P/9//z//f/8//3//P/9/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_5chhi") - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4xu2u"] -transparency = 1 -shading_mode = 0 -albedo_color = Color(1, 1, 1, 0) - -[sub_resource type="ArrayMesh" id="ArrayMesh_ood8f"] +[sub_resource type="ArrayMesh" id="ArrayMesh_7a87o"] _surfaces = [{ "aabb": AABB(-0.984553, -23.5008, -0.95724, 2.00022, 24.4466, 1e-05), "format": 34896613377, @@ -687,7 +509,188 @@ _surfaces = [{ "vertex_data": PackedByteArray("AAAAAAAAAID/////AAAAgP//AAAAAACAAAD//wAAAID/f////3////9/////f///") }] blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_ood8f") +shadow_mesh = SubResource("ArrayMesh_7a87o") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0b3sx"] +albedo_texture = ExtResource("9_adgr5") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7a87o"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="ArrayMesh" id="ArrayMesh_adgr5"] +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, 1.0428, 2.00022, 24.4466, 1e-05), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAA=") +}, { +"aabb": AABB(-0.984553, -36.1633, 1.0428, 2.00022, 12.6625, 1e-05), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAA=") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ux4sw"] +resource_name = "18_A1_CORRIDOR_A_Cube_003" +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, 1.0428, 2.00022, 24.4466, 1e-05), +"attribute_data": PackedByteArray("AAD/////AAAAAAAA/v///w=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_jhg27"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAD/v/+//7//v/+//7//v/+/") +}, { +"aabb": AABB(-0.984553, -36.1633, 1.0428, 2.00022, 12.6625, 1e-05), +"attribute_data": PackedByteArray("//////9//3//f///////fw=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_1huxf"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(2, 2, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("//8AAAAAAAAAAP//AAAAAAAAAAAAAAAA/////wAAAAD///9/////f////3////9/") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_adgr5") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_adgr5"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4sxun"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="ArrayMesh" id="ArrayMesh_3j8ld"] +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP//AAAAAP//AAAAAAAAAAAAAAAAAAD/////AAA=") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP//AAAAAP//AAAAAAAAAAAAAAAAAAD/////AAA=") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_tmqha"] +resource_name = "18_A1_CORRIDOR_A_Cube_004" +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), +"attribute_data": PackedByteArray("AAD/////AAAAAAAA/////w=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_jhg27"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP//qioAAP//AACqKgAAAAAAAKoqAAD/////qiqqKqoqqiqqKqoqqiqqKqoq") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), +"attribute_data": PackedByteArray("/3///////3///////3//fw=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_1huxf"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(2, 2, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAP///78AAP//AAD/vwAAAAAAAP+/AAD//////7//fwAA/38AAP9/AAD/fwAA") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_3j8ld") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hm6c0"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="ArrayMesh" id="ArrayMesh_0b3sx"] +_surfaces = [{ +"aabb": AABB(1.01566, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAAAAAP////8AAAAAAAD//wAAAAD//wAAAAA=") +}, { +"aabb": AABB(1.01566, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAAAAAP////8AAAAAAAD//wAAAAD//wAAAAA=") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_o04ue"] +resource_name = "18_A1_CORRIDOR_A_Cube_001" +_surfaces = [{ +"aabb": AABB(1.01566, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), +"attribute_data": PackedByteArray("AAD/////AAAAAAAA/////w=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_jhg27"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAqioAAP////+qKgAAAAD//6oqAAD//wAAqipU1VTVVNVU1VTVVNVU1VTV") +}, { +"aabb": AABB(1.01566, -36.1633, -0.95724, 1e-05, 12.6625, 2.00004), +"attribute_data": PackedByteArray("//////9//3//f///////fw=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_1huxf"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(2, 2, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAAAAAP////8AAAAAAAD//wAAAAD//wAAAAD/P/9//z//f/8//3//P/9/") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_0b3sx") [sub_resource type="BoxShape3D" id="BoxShape3D_7uihh"] size = Vector3(4, 4, 4) @@ -699,6 +702,7 @@ size = Vector2(4, 4) [node name="Corridor" type="Node3D"] script = ExtResource("1_lepkf") voxel_scale = Vector3(4, 4, 4) +show_debug_in_editor = false [node name="Model" type="Node3D" parent="."] script = ExtResource("2_xywry") @@ -760,79 +764,73 @@ shape = SubResource("BoxShape3D_xywry") [node name="Doors" type="Node3D" parent="."] -[node name="DOOR?_F_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.0339368, -0.095025, 1.87165) +[node name="DOOR?" type="CSGBox3D" parent="Doors"] +transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0498385, 0.0586318, -2.03732) use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_2qrwe") +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_3j8ld") -[node name="CA_WALL_3" type="MeshInstance3D" parent="Doors/DOOR?_F_CUT"] -transform = Transform3D(-2, 0, 1.74846e-07, 0, 0.10779, 0, -1.74846e-07, 0, -2, 0.00432254, 1.99581, 1.94811) -mesh = SubResource("ArrayMesh_ux4sw") -skeleton = NodePath("") - -[node name="StaticBody3D" type="StaticBody3D" parent="Doors/DOOR?_F_CUT"] -collision_layer = 2147483648 -collision_mask = 2147483648 - -[node name="CollisionShape3D" type="CollisionShape3D" parent="Doors/DOOR?_F_CUT/StaticBody3D"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0286865, 0, 0.0675668) -shape = SubResource("BoxShape3D_gbjb2") - -[node name="DOOR?_R_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -1.87415, -0.109414, -0.094615) -use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_lepkf") - -[node name="CA_WALL_4" type="MeshInstance3D" parent="Doors/DOOR?_R_CUT"] -transform = Transform3D(-8.74228e-08, 0, -2, 0, 0.10779, 0, 2, 0, -8.74228e-08, -0.0181541, 2.0102, 1.83589) -mesh = SubResource("ArrayMesh_tmqha") -skeleton = NodePath("") - -[node name="StaticBody3D" type="StaticBody3D" parent="Doors/DOOR?_R_CUT"] -collision_layer = 2147483648 -collision_mask = 2147483648 - -[node name="CollisionShape3D" type="CollisionShape3D" parent="Doors/DOOR?_R_CUT/StaticBody3D"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.45058e-09, 0, -0.217697) -shape = SubResource("BoxShape3D_gbjb2") - -[node name="DOOR?_L_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 1.98471, -0.0715388, -0.0946158) -use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_0m8h3") - -[node name="CA_WALL_1" type="MeshInstance3D" parent="Doors/DOOR?_L_CUT"] -transform = Transform3D(-8.74228e-08, 0, -2, 0, 0.10779, 0, 2, 0, -8.74228e-08, -0.0181548, 1.97232, -2.02297) -mesh = SubResource("ArrayMesh_o04ue") -skeleton = NodePath("") - -[node name="StaticBody3D" type="StaticBody3D" parent="Doors/DOOR?_L_CUT"] -collision_layer = 2147483648 -collision_mask = 2147483648 - -[node name="CollisionShape3D" type="CollisionShape3D" parent="Doors/DOOR?_L_CUT/StaticBody3D"] -shape = SubResource("BoxShape3D_gbjb2") - -[node name="DOOR?_B_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.0339377, -0.127415, -2.00389) -use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_4xu2u") - -[node name="CA_WALL_2" type="MeshInstance3D" parent="Doors/DOOR?_B_CUT"] -transform = Transform3D(-2, 0, 1.74846e-07, 0, 0.10779, 0, -1.74846e-07, 0, -2, 0.00432197, 2.0282, -1.92743) +[node name="CA_WALL_2" type="MeshInstance3D" parent="Doors/DOOR?"] +transform = Transform3D(-8.74228e-08, 0.10779, 1.73929e-20, -2, -4.71165e-09, 3.97904e-13, 3.97904e-13, 0, 2, 1.84215, 0.088098, 1.96086) mesh = SubResource("ArrayMesh_ue4n7") skeleton = NodePath("") -[node name="StaticBody3D" type="StaticBody3D" parent="Doors/DOOR?_B_CUT"] -collision_layer = 2147483648 -collision_mask = 2147483648 +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00236224, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_0b3sx") +size = Vector3(4.99487, 4, 0.203003) +material = SubResource("StandardMaterial3D_7a87o") -[node name="CollisionShape3D" type="CollisionShape3D" parent="Doors/DOOR?_B_CUT/StaticBody3D"] -shape = SubResource("BoxShape3D_gbjb2") +[node name="DOOR?2" type="CSGBox3D" parent="Doors"] +transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0498385, 0.0586318, 1.96147) +use_collision = true +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_3j8ld") + +[node name="CA_WALL_3" type="MeshInstance3D" parent="Doors/DOOR?2"] +transform = Transform3D(-8.74228e-08, 0.10779, 1.73929e-20, -2, -4.71165e-09, 3.97904e-13, 3.97904e-13, 0, 2, 1.84215, 0.088098, -2.03793) +mesh = SubResource("ArrayMesh_ux4sw") +skeleton = NodePath("") + +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?2"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00984479, -3.72529e-08, 0.0620438) +material_override = SubResource("StandardMaterial3D_0b3sx") +size = Vector3(4.97876, 4, 0.203003) +material = SubResource("StandardMaterial3D_adgr5") + +[node name="DOOR?3" type="CSGBox3D" parent="Doors"] +transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, -1.95513, 0.0586318, -0.00728679) +use_collision = true +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_3j8ld") + +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?3"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0715151, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_0b3sx") +size = Vector3(4.37317, 4, 0.203003) +material = SubResource("StandardMaterial3D_4sxun") + +[node name="CA_WALL_4" type="MeshInstance3D" parent="Doors/DOOR?3"] +transform = Transform3D(3.82137e-15, 0.10779, 8.74228e-08, 8.74228e-08, -4.71165e-09, 2, 2, 0, -8.74228e-08, 1.84215, -0.0691742, 1.91687) +mesh = SubResource("ArrayMesh_tmqha") +skeleton = NodePath("") + +[node name="DOOR?4" type="CSGBox3D" parent="Doors"] +transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, 1.95208, 0.0586318, -0.00681353) +use_collision = true +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_3j8ld") + +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?4"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00215435, -3.81842e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_0b3sx") +size = Vector3(4.24316, 4, 0.203003) +material = SubResource("StandardMaterial3D_hm6c0") + +[node name="CA_WALL_1" type="MeshInstance3D" parent="Doors/DOOR?4"] +transform = Transform3D(3.82137e-15, 0.10779, 8.74228e-08, 8.74228e-08, -4.71165e-09, 2, 2, 0, -8.74228e-08, 1.84215, -0.0696476, -1.99034) +mesh = SubResource("ArrayMesh_o04ue") +skeleton = NodePath("") [node name="Spawn Points" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn index a3bab5ff..9b2facb3 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn @@ -454,7 +454,7 @@ shading_mode = 0 albedo_texture = ExtResource("18_r3pjb") [sub_resource type="BoxShape3D" id="BoxShape3D_mg5bq"] -size = Vector3(19.8499, 10.2039, 7.09571) +size = Vector3(15.7098, 10.2039, 7.09571) [sub_resource type="BoxShape3D" id="BoxShape3D_tgauh"] size = Vector3(20, 20, 36) @@ -574,7 +574,7 @@ collision_layer = 256 collision_mask = 256 [node name="CollisionShape3D" type="CollisionShape3D" parent="Room/Exit"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00817108, 1.56831, 4.23168) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00295544, 1.56831, 4.23168) shape = SubResource("BoxShape3D_mg5bq") [node name="Room" type="Area3D" parent="Room"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn index f57e3e24..71eef51b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn @@ -758,7 +758,7 @@ size = Vector3(28, 6, 48) material = ExtResource("20_jum0i") size = Vector2(20, 16) -[node name="DungeonRoom3D" type="Node3D"] +[node name="Water Room B" type="Node3D"] script = ExtResource("1_nwdhf") size_in_voxels = Vector3i(7, 1, 12) voxel_scale = Vector3(4, 4, 4) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn index e8863332..fe46d195 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn @@ -1,18 +1,17 @@ -[gd_scene load_steps=19 format=4 uid="uid://dttk7gis5ibge"] +[gd_scene load_steps=20 format=4 uid="uid://dttk7gis5ibge"] +[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_7ld5y"] [ext_resource type="Texture2D" uid="uid://b4ntbic76fab" path="res://src/map/dungeon/models/Set B/30. Void Room/30_A2_VOID_ROOM_VER_AREA_2_MAIN_222STONE.png" id="1_78esa"] [ext_resource type="Texture2D" uid="uid://b42njoxuhw11t" path="res://src/map/dungeon/models/Set B/30. Void Room/30_A2_VOID_ROOM_VER_8.png" id="2_ah2cc"] [ext_resource type="Texture2D" uid="uid://cxsnbtk8r85hr" path="res://src/map/dungeon/models/Set B/30. Void Room/30_A2_VOID_ROOM_VER_area_2_big_tile.png" id="3_kn0b5"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_f357e"] resource_name = "Material" -cull_mode = 0 shading_mode = 0 albedo_color = Color(0, 0, 0, 1) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3o3y6"] resource_name = "Material.001" -cull_mode = 0 shading_mode = 0 albedo_color = Color(0.906332, 0.906332, 0.906332, 1) @@ -108,7 +107,6 @@ shadow_mesh = SubResource("ArrayMesh_qjmyw") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dmsbv"] resource_name = "Material.003" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("1_78esa") @@ -180,13 +178,11 @@ shadow_mesh = SubResource("ArrayMesh_2i3ud") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mhvld"] resource_name = "CURTAINS" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("2_ah2cc") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_h5wn6"] resource_name = "Material.002" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("3_kn0b5") @@ -271,6 +267,7 @@ blend_shape_mode = 0 shadow_mesh = SubResource("ArrayMesh_aaruf") [node name="Void Room" type="Node3D"] +script = ExtResource("1_7ld5y") [node name="Model" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/35. Goddess of Guidance's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/35. Goddess of Guidance's Room.tscn index 0f86d067..698b8c3d 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/35. Goddess of Guidance's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/35. Goddess of Guidance's Room.tscn @@ -1,5 +1,6 @@ -[gd_scene load_steps=46 format=3 uid="uid://bo20ffw2ygbks"] +[gd_scene load_steps=47 format=3 uid="uid://bo20ffw2ygbks"] +[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_7wym6"] [ext_resource type="PackedScene" uid="uid://bodjd0em1q8s1" path="res://src/map/dungeon/models/Set B/35. Goddess of Guidance's Floor/35_A2_GUIDANCE_FLOOR.glb" id="1_60e31"] [sub_resource type="BoxShape3D" id="BoxShape3D_mkh5e"] @@ -141,6 +142,7 @@ height = 18.0847 radius = 2.56592 [node name="Goddess of Guidance\'s Floor" type="Node3D"] +script = ExtResource("1_7wym6") [node name="Model" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/36. Final Floor.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/36. Final Floor.tscn index 552eb002..b980f91a 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/36. Final Floor.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/36. Final Floor.tscn @@ -1,6 +1,7 @@ -[gd_scene load_steps=55 format=4 uid="uid://cyrrhoarhxlhg"] +[gd_scene load_steps=56 format=4 uid="uid://cyrrhoarhxlhg"] [ext_resource type="Texture2D" uid="uid://btt02vinv3ikx" path="res://src/map/dungeon/models/Set B/36. Final Floor/36_A2_FINAL_FLOOR_VER.0_Plane Base Color.png" id="1_er87g"] +[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="1_y4p12"] [ext_resource type="Texture2D" uid="uid://bg3dxa6v6n165" path="res://src/map/dungeon/models/Set B/36. Final Floor/36_A2_FINAL_FLOOR_VER.0_DARKER_STONE_AREA_2.png" id="2_6tqdj"] [ext_resource type="Texture2D" uid="uid://ej5sfwsfjog4" path="res://src/map/dungeon/models/Set B/36. Final Floor/36_A2_FINAL_FLOOR_VER.0_WHITE_TILE2.png" id="3_fmpqk"] [ext_resource type="Texture2D" uid="uid://c7lt8mcdhr7sr" path="res://src/map/dungeon/models/Set B/36. Final Floor/36_A2_FINAL_FLOOR_VER.0_final_sand.jpg" id="4_k7sl3"] @@ -855,6 +856,7 @@ blend_shape_mode = 0 shadow_mesh = SubResource("ArrayMesh_8ihw8") [node name="Final Floor" type="Node3D"] +script = ExtResource("1_y4p12") [node name="Model" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/37. Corridor 2.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/37. Corridor 2.tscn index 2cc55d87..bb70ee55 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/37. Corridor 2.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/37. Corridor 2.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=37 format=4 uid="uid://dooy8nc5pgaxm"] +[gd_scene load_steps=43 format=4 uid="uid://dooy8nc5pgaxm"] [ext_resource type="Script" uid="uid://fk3jis6rsipv" path="res://src/map/dungeon/code/corridor.gd" id="1_71ggh"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="2_5ibpy"] @@ -8,22 +8,21 @@ [ext_resource type="Texture2D" uid="uid://cot8ff6r8lloh" path="res://src/map/dungeon/models/Set B/37. Corridor B/37_A2_CORRIDOR_B_WHITE_layer_brick1.png" id="5_lolyr"] [ext_resource type="Texture2D" uid="uid://bltjwwsy7cieh" path="res://src/map/dungeon/models/Set B/37. Corridor B/37_A2_CORRIDOR_B_area_2_tile_3.png" id="6_lsept"] [ext_resource type="Texture2D" uid="uid://dqj533i8quohm" path="res://src/map/dungeon/models/Set B/37. Corridor B/37_A2_CORRIDOR_B_CORRIDOR_PANEL_UPPER.png" id="7_sx4i6"] +[ext_resource type="Texture2D" uid="uid://bkvegamuqdsdd" path="res://src/map/dungeon/models/Set A/18. Corridor A/CORRIDOR test_FLOOR1.jpg" id="8_4fw8l"] +[ext_resource type="Material" uid="uid://bsafm3t4drpl" path="res://src/map/dungeon/textures/MinimapTexture.tres" id="10_7c8qf"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_l2f0d"] resource_name = "Material.014" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("2_ijgu6") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xxxok"] resource_name = "Material.015" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("3_nbkbi") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jej4e"] resource_name = "CEILNG.007" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("4_05q7p") @@ -109,13 +108,11 @@ shadow_mesh = SubResource("ArrayMesh_sgiro") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8fh0t"] resource_name = "WALL.007" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("5_lolyr") [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_51wvk"] resource_name = "FLOOR.007" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("6_lsept") @@ -431,17 +428,80 @@ _surfaces = [{ blend_shape_mode = 0 shadow_mesh = SubResource("ArrayMesh_c82nn") -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2qrwe"] +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7c8qf"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_htf4s"] +albedo_texture = ExtResource("8_4fw8l") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dll0t"] transparency = 1 -shading_mode = 0 albedo_color = Color(1, 1, 1, 0) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ix6wn"] resource_name = "BOTTOM TRIM.007" -cull_mode = 0 shading_mode = 0 albedo_texture = ExtResource("7_sx4i6") +[sub_resource type="ArrayMesh" id="ArrayMesh_jtq5r"] +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, -0.95724, 2.00022, 24.4466, 1e-05), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAAD/////AAAAAP//AAAAAAAAAAD//wAAAAA=") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 2.00022, 12.6625, 1e-05), +"format": 34896613377, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAAD/////AAAAAP//AAAAAAAAAAD//wAAAAA=") +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_opeel"] +resource_name = "37_A2_CORRIDOR_B_Cube_002" +_surfaces = [{ +"aabb": AABB(-0.984553, -23.5008, -0.95724, 2.00022, 24.4466, 1e-05), +"attribute_data": PackedByteArray("//+haWxv//9sb6Fp/v///w=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_8fh0t"), +"name": "WALL.007", +"primitive": 3, +"uv_scale": Vector4(2.47834, 2.42346, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAA////////AAD/////AAAAAP//AAD//wAA////f/9//3//f/9//3//f/9/") +}, { +"aabb": AABB(-0.984553, -36.1633, -0.95724, 2.00022, 12.6625, 1e-05), +"attribute_data": PackedByteArray("/3///////3///////3//fw=="), +"format": 34896613399, +"index_count": 6, +"index_data": PackedByteArray("AAABAAIAAAADAAEA"), +"material": SubResource("StandardMaterial3D_ix6wn"), +"name": "BOTTOM TRIM.007", +"primitive": 3, +"uv_scale": Vector4(2, 2, 0, 0), +"vertex_count": 4, +"vertex_data": PackedByteArray("AAAAAAAAAID/////AAAAgP//AAAAAACAAAD//wAAAID/f////3////9/////f///") +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_jtq5r") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_olt0a"] +transparency = 1 +albedo_color = Color(1, 1, 1, 0) + [sub_resource type="ArrayMesh" id="ArrayMesh_7ylfw"] _surfaces = [{ "aabb": AABB(-0.984553, -23.5008, 1.0428, 2.00022, 24.4466, 1e-05), @@ -496,9 +556,8 @@ _surfaces = [{ blend_shape_mode = 0 shadow_mesh = SubResource("ArrayMesh_7ylfw") -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lepkf"] +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ns6xm"] transparency = 1 -shading_mode = 0 albedo_color = Color(1, 1, 1, 0) [sub_resource type="ArrayMesh" id="ArrayMesh_b15e2"] @@ -555,11 +614,6 @@ _surfaces = [{ blend_shape_mode = 0 shadow_mesh = SubResource("ArrayMesh_b15e2") -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0m8h3"] -transparency = 1 -shading_mode = 0 -albedo_color = Color(1, 1, 1, 0) - [sub_resource type="ArrayMesh" id="ArrayMesh_4ude8"] _surfaces = [{ "aabb": AABB(1.01566, -23.5008, -0.95724, 1e-05, 24.4466, 2.00004), @@ -614,64 +668,16 @@ _surfaces = [{ blend_shape_mode = 0 shadow_mesh = SubResource("ArrayMesh_4ude8") -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4xu2u"] +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bcqgr"] transparency = 1 -shading_mode = 0 albedo_color = Color(1, 1, 1, 0) -[sub_resource type="ArrayMesh" id="ArrayMesh_jtq5r"] -_surfaces = [{ -"aabb": AABB(-0.984553, -23.5008, -0.95724, 2.00022, 24.4466, 1e-05), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAAAAD/////AAAAAP//AAAAAAAAAAD//wAAAAA=") -}, { -"aabb": AABB(-0.984553, -36.1633, -0.95724, 2.00022, 12.6625, 1e-05), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAAAAD/////AAAAAP//AAAAAAAAAAD//wAAAAA=") -}] -blend_shape_mode = 0 +[sub_resource type="BoxShape3D" id="BoxShape3D_7c8qf"] +size = Vector3(4, 4, 4) -[sub_resource type="ArrayMesh" id="ArrayMesh_opeel"] -resource_name = "37_A2_CORRIDOR_B_Cube_002" -_surfaces = [{ -"aabb": AABB(-0.984553, -23.5008, -0.95724, 2.00022, 24.4466, 1e-05), -"attribute_data": PackedByteArray("//+haWxv//9sb6Fp/v///w=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_8fh0t"), -"name": "WALL.007", -"primitive": 3, -"uv_scale": Vector4(2.47834, 2.42346, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAA////////AAD/////AAAAAP//AAD//wAA////f/9//3//f/9//3//f/9/") -}, { -"aabb": AABB(-0.984553, -36.1633, -0.95724, 2.00022, 12.6625, 1e-05), -"attribute_data": PackedByteArray("/3///////3///////3//fw=="), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("AAABAAIAAAADAAEA"), -"material": SubResource("StandardMaterial3D_ix6wn"), -"name": "BOTTOM TRIM.007", -"primitive": 3, -"uv_scale": Vector4(2, 2, 0, 0), -"vertex_count": 4, -"vertex_data": PackedByteArray("AAAAAAAAAID/////AAAAgP//AAAAAACAAAD//wAAAID/f////3////9/////f///") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_jtq5r") +[sub_resource type="PlaneMesh" id="PlaneMesh_htf4s"] +material = ExtResource("10_7c8qf") +size = Vector2(4, 4) [node name="Corridor" type="Node3D"] script = ExtResource("1_71ggh") @@ -712,52 +718,94 @@ skeleton = NodePath("") [node name="Doors" type="Node3D" parent="."] -[node name="DOOR?_F_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.0339368, -0.095025, 1.87165) +[node name="DOOR?" type="CSGBox3D" parent="Doors"] +transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0498385, 0.0586318, -2.03732) use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_2qrwe") +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_7c8qf") -[node name="CB_WALL_4" type="MeshInstance3D" parent="Doors/DOOR?_F_CUT"] -transform = Transform3D(-2, 0, 1.74846e-07, 0, 0.10779, 0, -1.74846e-07, 0, -2, -0.129782, 2.05207, 1.86676) +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_htf4s") +size = Vector3(4, 4, 0.203003) +material = SubResource("StandardMaterial3D_dll0t") + +[node name="CB_WALL_2" type="MeshInstance3D" parent="Doors/DOOR?"] +transform = Transform3D(-8.74228e-08, 0.10779, 1.73929e-20, -2, -4.71165e-09, 3.97904e-13, 3.97904e-13, 0, 2, 1.89841, -0.0460071, 2.04221) +mesh = SubResource("ArrayMesh_opeel") +skeleton = NodePath("") + +[node name="DOOR?2" type="CSGBox3D" parent="Doors"] +transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0.0498385, 0.0586318, 1.96147) +use_collision = true +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_7c8qf") + +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?2"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_htf4s") +size = Vector3(4, 4, 0.203003) +material = SubResource("StandardMaterial3D_olt0a") + +[node name="CB_WALL_4" type="MeshInstance3D" parent="Doors/DOOR?2"] +transform = Transform3D(-8.74228e-08, 0.10779, 1.73929e-20, -2, -4.71165e-09, 3.97904e-13, 3.97904e-13, 0, 2, 1.89841, -0.0460066, -1.95658) mesh = SubResource("ArrayMesh_jb11o") skeleton = NodePath("") -[node name="DOOR?_R_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -1.87415, -0.109414, -0.094615) +[node name="DOOR?3" type="CSGBox3D" parent="Doors"] +transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, -1.95513, 0.0586318, -0.00728679) use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_lepkf") +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_7c8qf") -[node name="CB_WALL_1" type="MeshInstance3D" parent="Doors/DOOR?_R_CUT"] -transform = Transform3D(-8.74228e-08, 0, -2, 0, 0.10779, 0, 2, 0, -8.74228e-08, -0.0995048, 2.06646, 1.97) +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?3"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_htf4s") +size = Vector3(4, 4, 0.203003) +material = SubResource("StandardMaterial3D_ns6xm") + +[node name="CB_WALL_1" type="MeshInstance3D" parent="Doors/DOOR?3"] +transform = Transform3D(3.82137e-15, 0.10779, 8.74228e-08, 8.74228e-08, -4.71165e-09, 2, 2, -3.88032e-22, -8.74228e-08, 1.89841, 0.0121765, 2.05098) mesh = SubResource("ArrayMesh_ogsb3") skeleton = NodePath("") -[node name="DOOR?_L_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 1.98471, -0.0715388, -0.0946158) +[node name="DOOR?4" type="CSGBox3D" parent="Doors"] +transform = Transform3D(1.91069e-15, 4.37114e-08, 1, 1, -4.37114e-08, 0, 4.37114e-08, 1, -4.37114e-08, 1.95208, 0.0586318, -0.00681353) use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_0m8h3") +size = Vector3(3.90674, 4, 0.1) +material = SubResource("StandardMaterial3D_7c8qf") -[node name="CB_WALL_3" type="MeshInstance3D" parent="Doors/DOOR?_L_CUT"] -transform = Transform3D(-8.74228e-08, 0, -2, 0, 0.10779, 0, 2, 0, -8.74228e-08, -0.0995054, 2.02859, -1.88886) +[node name="CB_WALL_3" type="MeshInstance3D" parent="Doors/DOOR?4"] +transform = Transform3D(3.82137e-15, 0.10779, 8.74228e-08, 8.74228e-08, -4.71165e-09, 2, 2, -3.88032e-22, -8.74228e-08, 1.89842, 0.011703, -1.85623) mesh = SubResource("ArrayMesh_eoqpa") skeleton = NodePath("") -[node name="DOOR?_B_CUT" type="CSGBox3D" parent="Doors"] -transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.0339377, -0.127415, -2.00389) -use_collision = true -size = Vector3(3.8, 3.8, 0.25) -material = SubResource("StandardMaterial3D_4xu2u") - -[node name="CB_WALL_2" type="MeshInstance3D" parent="Doors/DOOR?_B_CUT"] -transform = Transform3D(-2, 0, 1.74846e-07, 0, 0.10779, 0, -1.74846e-07, 0, -2, -0.129783, 2.08446, -2.00878) -mesh = SubResource("ArrayMesh_opeel") -skeleton = NodePath("") +[node name="Box" type="CSGBox3D" parent="Doors/DOOR?4"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00166607, -3.72529e-08, 0.0620437) +material_override = SubResource("StandardMaterial3D_htf4s") +size = Vector3(4, 4, 0.203003) +material = SubResource("StandardMaterial3D_bcqgr") [node name="Spawn Points" type="Node3D" parent="."] [node name="Room" type="Node3D" parent="."] +[node name="Room" type="Area3D" parent="Room"] +unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 11.8436, 0) +collision_layer = 0 +collision_mask = 10 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Room/Room"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00170277, -11.8564, -1.19209e-07) +shape = SubResource("BoxShape3D_7c8qf") + [node name="Minimap" type="Node3D" parent="."] + +[node name="Minimap" type="MeshInstance3D" parent="Minimap"] +unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.03602, 0) +visible = false +layers = 2 +mesh = SubResource("PlaneMesh_htf4s") +skeleton = NodePath("../..") diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn index c8ae94f7..71a5947b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn @@ -542,8 +542,8 @@ albedo_texture = ExtResource("19_p23g3") [sub_resource type="BoxShape3D" id="BoxShape3D_7o05s"] size = Vector3(20, 20, 36) -[sub_resource type="BoxShape3D" id="BoxShape3D_24rcp"] -size = Vector3(20, 8, 16) +[sub_resource type="BoxShape3D" id="BoxShape3D_wu8s2"] +size = Vector3(15.7098, 10.2039, 7.09571) [sub_resource type="PlaneMesh" id="PlaneMesh_s0txx"] material = ExtResource("22_twkyh") @@ -675,10 +675,13 @@ shape = SubResource("BoxShape3D_7o05s") [node name="Exit" type="Area3D" parent="Room"] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.102148, -0.0370986) +collision_layer = 256 +collision_mask = 256 [node name="CollisionShape3D" type="CollisionShape3D" parent="Room/Exit"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.9474, 0) -shape = SubResource("BoxShape3D_24rcp") +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00295544, 1.56831, 4.23168) +shape = SubResource("BoxShape3D_wu8s2") [node name="Minimap" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/npc/Caretaker/Caretaker.tscn b/Zennysoft.Game.Ma/src/npc/Caretaker/Caretaker.tscn index c90490b2..be273607 100644 --- a/Zennysoft.Game.Ma/src/npc/Caretaker/Caretaker.tscn +++ b/Zennysoft.Game.Ma/src/npc/Caretaker/Caretaker.tscn @@ -1,6 +1,8 @@ -[gd_scene load_steps=5 format=3 uid="uid://cjj6wabswtkk1"] +[gd_scene load_steps=7 format=3 uid="uid://cjj6wabswtkk1"] [ext_resource type="Script" uid="uid://dcqssoikr3pl7" path="res://src/npc/Npc.cs" id="1_3at8w"] +[ext_resource type="Resource" uid="uid://lao0opxww3ib" path="res://src/dialog/Dialogue.dialogue" id="2_egfgt"] +[ext_resource type="Texture2D" uid="uid://ce6a08oyeym31" path="res://src/npc/Caretaker/caretaker.png" id="3_85c36"] [sub_resource type="CylinderShape3D" id="CylinderShape3D_wfhgc"] radius = 3.0 @@ -15,6 +17,7 @@ radius = 1.941 [node name="Caretaker of Saints" type="Node3D"] script = ExtResource("1_3at8w") +Dialogue = ExtResource("2_egfgt") [node name="Sprite" type="Sprite3D" parent="."] unique_name_in_owner = true @@ -22,6 +25,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.1, 0) gi_mode = 0 billboard = 2 texture_filter = 0 +texture = ExtResource("3_85c36") [node name="DialogueZone" type="Area3D" parent="."] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/npc/Caretaker/caretaker.png b/Zennysoft.Game.Ma/src/npc/Caretaker/caretaker.png new file mode 100644 index 00000000..561b190c Binary files /dev/null and b/Zennysoft.Game.Ma/src/npc/Caretaker/caretaker.png differ diff --git a/Zennysoft.Game.Ma/src/npc/Caretaker/caretaker.png.import b/Zennysoft.Game.Ma/src/npc/Caretaker/caretaker.png.import new file mode 100644 index 00000000..fbf4e5fb --- /dev/null +++ b/Zennysoft.Game.Ma/src/npc/Caretaker/caretaker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce6a08oyeym31" +path="res://.godot/imported/caretaker.png-1bf4f5ad751559edf4cd1a0eaa26bb20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://src/npc/Caretaker/caretaker.png" +dest_files=["res://.godot/imported/caretaker.png-1bf4f5ad751559edf4cd1a0eaa26bb20.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 diff --git a/Zennysoft.Game.Ma/src/npc/Clalo/Clalo.tscn b/Zennysoft.Game.Ma/src/npc/Clalo/Clalo.tscn index 830bba40..cef70339 100644 --- a/Zennysoft.Game.Ma/src/npc/Clalo/Clalo.tscn +++ b/Zennysoft.Game.Ma/src/npc/Clalo/Clalo.tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=6 format=3 uid="uid://ccwn5dfst7o4d"] +[gd_scene load_steps=7 format=3 uid="uid://ccwn5dfst7o4d"] [ext_resource type="Script" uid="uid://dcqssoikr3pl7" path="res://src/npc/Npc.cs" id="1_38loe"] [ext_resource type="Texture2D" uid="uid://bavr1xnqn384k" path="res://src/npc/Clalo/CLALO.png" id="2_rop5q"] +[ext_resource type="Resource" uid="uid://lao0opxww3ib" path="res://src/dialog/Dialogue.dialogue" id="2_x0dcb"] [sub_resource type="CylinderShape3D" id="CylinderShape3D_wfhgc"] radius = 3.0 @@ -16,6 +17,7 @@ radius = 1.941 [node name="Clalo" type="Node3D"] script = ExtResource("1_38loe") +Dialogue = ExtResource("2_x0dcb") [node name="Sprite" type="Sprite3D" parent="."] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/npc/Feather/Feather.tscn b/Zennysoft.Game.Ma/src/npc/Feather/Feather.tscn index 3601c64a..7c3407a5 100644 --- a/Zennysoft.Game.Ma/src/npc/Feather/Feather.tscn +++ b/Zennysoft.Game.Ma/src/npc/Feather/Feather.tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=6 format=3 uid="uid://cuvhqm4t3e68o"] +[gd_scene load_steps=7 format=3 uid="uid://cuvhqm4t3e68o"] [ext_resource type="Script" uid="uid://dcqssoikr3pl7" path="res://src/npc/Npc.cs" id="1_e5axu"] [ext_resource type="PackedScene" uid="uid://bvbl7teafxyfr" path="res://src/npc/Feather/Feather_Well VER.01.glb" id="2_jla86"] +[ext_resource type="Resource" uid="uid://lao0opxww3ib" path="res://src/dialog/Dialogue.dialogue" id="2_y21f1"] [sub_resource type="CylinderShape3D" id="CylinderShape3D_wfhgc"] radius = 3.0 @@ -16,6 +17,7 @@ radius = 1.941 [node name="Feather" type="Node3D"] script = ExtResource("1_e5axu") +Dialogue = ExtResource("2_y21f1") [node name="Sprite" type="Sprite3D" parent="."] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/npc/Goddess of Guidance/GoddessOfGuidance.tscn b/Zennysoft.Game.Ma/src/npc/Goddess of Guidance/GoddessOfGuidance.tscn new file mode 100644 index 00000000..b119bbed --- /dev/null +++ b/Zennysoft.Game.Ma/src/npc/Goddess of Guidance/GoddessOfGuidance.tscn @@ -0,0 +1,56 @@ +[gd_scene load_steps=7 format=3 uid="uid://sv8yixbryu55"] + +[ext_resource type="Script" uid="uid://dcqssoikr3pl7" path="res://src/npc/Npc.cs" id="1_ihoh1"] +[ext_resource type="Resource" uid="uid://lao0opxww3ib" path="res://src/dialog/Dialogue.dialogue" id="2_ylaym"] +[ext_resource type="Texture2D" uid="uid://cojh7jjk70psy" path="res://src/npc/Goddess of Guidance/goddess-of-guidance.png" id="3_5ksva"] + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_wfhgc"] +radius = 3.0 + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_kg3qv"] +radius = 0.837722 +height = 2.8375 + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_nwuwj"] +height = 2.24425 +radius = 1.941 + +[node name="Goddess of Guidance" type="Node3D"] +script = ExtResource("1_ihoh1") +Dialogue = ExtResource("2_ylaym") + +[node name="Sprite" type="Sprite3D" parent="."] +unique_name_in_owner = true +gi_mode = 0 +pixel_size = 0.008 +billboard = 2 +double_sided = false +alpha_cut = 2 +texture_filter = 0 +texture = ExtResource("3_5ksva") + +[node name="DialogueZone" type="Area3D" parent="."] +unique_name_in_owner = true +collision_layer = 2 +collision_mask = 2 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="DialogueZone"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00131226, 0, -0.00723076) +shape = SubResource("CylinderShape3D_wfhgc") + +[node name="Collision" type="RigidBody3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.105047, -0.0490516, 0) +collision_mask = 0 +gravity_scale = 0.0 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Collision"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.169075, 0, 0) +shape = SubResource("CapsuleShape3D_kg3qv") + +[node name="Hitbox" type="Area3D" parent="."] +unique_name_in_owner = true +collision_layer = 0 +collision_mask = 2068 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Hitbox"] +shape = SubResource("CylinderShape3D_nwuwj") diff --git a/Zennysoft.Game.Ma/src/npc/Proscenium/Proscenium.tscn b/Zennysoft.Game.Ma/src/npc/Proscenium/Proscenium.tscn index d8bbfa4d..088251ed 100644 --- a/Zennysoft.Game.Ma/src/npc/Proscenium/Proscenium.tscn +++ b/Zennysoft.Game.Ma/src/npc/Proscenium/Proscenium.tscn @@ -1,6 +1,7 @@ -[gd_scene load_steps=6 format=3 uid="uid://bhsoehmr37aws"] +[gd_scene load_steps=7 format=3 uid="uid://bhsoehmr37aws"] [ext_resource type="Script" uid="uid://dcqssoikr3pl7" path="res://src/npc/Npc.cs" id="1_knba1"] +[ext_resource type="Resource" uid="uid://lao0opxww3ib" path="res://src/dialog/Dialogue.dialogue" id="2_dgby4"] [ext_resource type="Texture2D" uid="uid://dgkocrg0wmcii" path="res://src/npc/Proscenium/proscenium_normal.png" id="2_rqskb"] [sub_resource type="CylinderShape3D" id="CylinderShape3D_wfhgc"] @@ -16,6 +17,7 @@ radius = 1.941 [node name="Proscenium" type="Node3D"] script = ExtResource("1_knba1") +Dialogue = ExtResource("2_dgby4") [node name="Sprite" type="Sprite3D" parent="."] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/npc/Puer/Puer.tscn b/Zennysoft.Game.Ma/src/npc/Puer/Puer.tscn index 06f617d1..3ccdf72a 100644 --- a/Zennysoft.Game.Ma/src/npc/Puer/Puer.tscn +++ b/Zennysoft.Game.Ma/src/npc/Puer/Puer.tscn @@ -5,7 +5,7 @@ [ext_resource type="Resource" uid="uid://lao0opxww3ib" path="res://src/dialog/Dialogue.dialogue" id="2_j753f"] [sub_resource type="CylinderShape3D" id="CylinderShape3D_wfhgc"] -radius = 3.0 +radius = 5.25195 [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_kg3qv"] radius = 0.837722 @@ -30,6 +30,7 @@ texture = ExtResource("2_3ad4x") [node name="DialogueZone" type="Area3D" parent="."] unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.421529, 0) collision_layer = 2 collision_mask = 2 diff --git a/Zennysoft.Game.Ma/src/player/Player.cs b/Zennysoft.Game.Ma/src/player/Player.cs index 0b397eb9..e2463a88 100644 --- a/Zennysoft.Game.Ma/src/player/Player.cs +++ b/Zennysoft.Game.Ma/src/player/Player.cs @@ -362,6 +362,10 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide