Dungeon Room Re-import and Old Models Deleted
@@ -34,58 +34,58 @@ public partial class DataViewer : Control
|
|||||||
|
|
||||||
public void Initialize()
|
public void Initialize()
|
||||||
{
|
{
|
||||||
Instantiator = new Instantiator(GetTree());
|
Instantiator = new Instantiator(GetTree());
|
||||||
LoadModel();
|
LoadModel();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void _Process(double delta)
|
public override void _Process(double delta)
|
||||||
{
|
{
|
||||||
if (Input.IsActionPressed(GameInputs.MoveLeft))
|
if (Input.IsActionPressed(GameInputs.MoveLeft))
|
||||||
CameraPivot.RotateY(_cameraSpeed);
|
CameraPivot.RotateY(_cameraSpeed);
|
||||||
if (Input.IsActionPressed(GameInputs.MoveRight))
|
if (Input.IsActionPressed(GameInputs.MoveRight))
|
||||||
CameraPivot.RotateY(-_cameraSpeed);
|
CameraPivot.RotateY(-_cameraSpeed);
|
||||||
if (Input.IsActionPressed(GameInputs.StrafeLeft))
|
if (Input.IsActionPressed(GameInputs.StrafeLeft))
|
||||||
Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, (float)delta * 2f);
|
Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, (float)delta * 2f);
|
||||||
if (Input.IsActionPressed(GameInputs.StrafeRight))
|
if (Input.IsActionPressed(GameInputs.StrafeRight))
|
||||||
Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, -(float)delta * 2f);
|
Camera3D.Position = Camera3D.Position.MoveToward(CameraPivot.Position, -(float)delta * 2f);
|
||||||
|
|
||||||
Camera3D.Position = Camera3D.Position.Clamp(new Vector3(0, 0, 1), new Vector3(0, 0, 4));
|
Camera3D.Position = Camera3D.Position.Clamp(new Vector3(0, 0, 1), new Vector3(0, 0, 4));
|
||||||
ModelPivot.Rotation = ModelPivot.Rotation.Clamp(Mathf.DegToRad(-60), Mathf.DegToRad(60));
|
ModelPivot.Rotation = ModelPivot.Rotation.Clamp(Mathf.DegToRad(-60), Mathf.DegToRad(60));
|
||||||
_currentModel.SetCurrentDirection(_currentModel.GlobalBasis, -CameraPivot.Basis.Z);
|
_currentModel.SetCurrentDirection(_currentModel.GlobalBasis, -CameraPivot.Basis.Z);
|
||||||
_currentModel.PlayIdleAnimation();
|
_currentModel.PlayIdleAnimation();
|
||||||
|
|
||||||
if (Input.IsActionJustPressed(GameInputs.Attack))
|
if (Input.IsActionJustPressed(GameInputs.Attack))
|
||||||
_currentModel.PlayPrimaryAttackAnimation();
|
_currentModel.PlayPrimaryAttackAnimation();
|
||||||
if (Input.IsActionJustPressed(GameInputs.AltAttack))
|
if (Input.IsActionJustPressed(GameInputs.AltAttack))
|
||||||
_currentModel.PlaySecondaryAttackAnimation();
|
_currentModel.PlaySecondaryAttackAnimation();
|
||||||
if (Input.IsActionJustPressed(GameInputs.Inventory) && _currentModel is ICanActivate canActivate)
|
if (Input.IsActionJustPressed(GameInputs.Inventory) && _currentModel is ICanActivate canActivate)
|
||||||
canActivate.Activate();
|
canActivate.Activate();
|
||||||
if (Input.IsActionPressed(GameInputs.StrafeRight))
|
if (Input.IsActionPressed(GameInputs.StrafeRight))
|
||||||
_currentModel.PlayWalkAnimation();
|
_currentModel.PlayWalkAnimation();
|
||||||
|
|
||||||
if (Input.IsActionJustPressed(GameInputs.Next))
|
if (Input.IsActionJustPressed(GameInputs.Next))
|
||||||
{
|
{
|
||||||
// Load next model
|
// Load next model
|
||||||
_currentModel.CallDeferred(MethodName.QueueFree);
|
_currentModel.CallDeferred(MethodName.QueueFree);
|
||||||
_modelIndex = (_modelIndex + 1) % DataViewerRepository.ModelRepository.Count;
|
_modelIndex = (_modelIndex + 1) % DataViewerRepository.ModelRepository.Count;
|
||||||
GD.Print(_modelIndex);
|
GD.Print(_modelIndex);
|
||||||
CallDeferred(MethodName.LoadModel);
|
CallDeferred(MethodName.LoadModel);
|
||||||
}
|
}
|
||||||
if (Input.IsActionJustPressed(GameInputs.Previous))
|
if (Input.IsActionJustPressed(GameInputs.Previous))
|
||||||
{
|
{
|
||||||
// Load previous model
|
// Load previous model
|
||||||
_currentModel.CallDeferred(MethodName.QueueFree);
|
_currentModel.CallDeferred(MethodName.QueueFree);
|
||||||
_modelIndex = (_modelIndex - 1 < 0 ? DataViewerRepository.ModelRepository.Count : _modelIndex) - 1;
|
_modelIndex = (_modelIndex - 1 < 0 ? DataViewerRepository.ModelRepository.Count : _modelIndex) - 1;
|
||||||
CallDeferred(MethodName.LoadModel);
|
CallDeferred(MethodName.LoadModel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void LoadModel()
|
private void LoadModel()
|
||||||
{
|
{
|
||||||
var modelScene = DataViewerRepository.ModelRepository.ElementAt(_modelIndex);
|
var modelScene = DataViewerRepository.ModelRepository.ElementAt(_modelIndex);
|
||||||
_currentModel = modelScene.Instantiate<EnemyModelView2D>();
|
_currentModel = modelScene.Instantiate<EnemyModelView2D>();
|
||||||
ModelPivot.AddChild(_currentModel);
|
ModelPivot.AddChild(_currentModel);
|
||||||
EnemyName.Text = _currentModel.EnemyLoreInfo.Name;
|
EnemyName.Text = _currentModel.EnemyLoreInfo.Name;
|
||||||
Description.Text = _currentModel.EnemyLoreInfo.Description;
|
Description.Text = _currentModel.EnemyLoreInfo.Description;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
[ext_resource type="Script" uid="uid://bgaflnnur26vk" path="res://src/data_viewer/DataViewer.cs" id="1_1qako"]
|
[ext_resource type="Script" uid="uid://bgaflnnur26vk" path="res://src/data_viewer/DataViewer.cs" id="1_1qako"]
|
||||||
[ext_resource type="Theme" uid="uid://daxuhpmyxwxck" path="res://src/ui/inventory_menu/InventoryDialogueSelectionStyle.tres" id="2_bef6s"]
|
[ext_resource type="Theme" uid="uid://daxuhpmyxwxck" path="res://src/ui/inventory_menu/InventoryDialogueSelectionStyle.tres" id="2_bef6s"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://iwcftnraw2k0" path="res://src/map/assets/sarco altar_greeen2.png" id="3_3wl4s"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c16i1gmg6yu5a" path="res://src/data_viewer/DataViewerRepository.tscn" id="3_ejdn0"]
|
[ext_resource type="PackedScene" uid="uid://c16i1gmg6yu5a" path="res://src/data_viewer/DataViewerRepository.tscn" id="3_ejdn0"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bh0crf4qonrh5" path="res://src/map/dungeon/models/Set A/03. Antechamber A/ANTECHAMBER_TYPE1_VER2_8311.png" id="3_hpkd1"]
|
|
||||||
[ext_resource type="PackedScene" uid="uid://bjg8wyvp8q6oc" path="res://src/enemy/enemy_types/02. michael/MichaelModelView.tscn" id="4_bef6s"]
|
[ext_resource type="PackedScene" uid="uid://bjg8wyvp8q6oc" path="res://src/enemy/enemy_types/02. michael/MichaelModelView.tscn" id="4_bef6s"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dcm53j3rncxdm" path="res://src/enemy/enemy_types/06. chariot/ChariotModelView.tscn" id="5_vk1lh"]
|
[ext_resource type="PackedScene" uid="uid://dcm53j3rncxdm" path="res://src/enemy/enemy_types/06. chariot/ChariotModelView.tscn" id="5_vk1lh"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bimjnsu52y3xi" path="res://src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn" id="6_hpkd1"]
|
[ext_resource type="PackedScene" uid="uid://bimjnsu52y3xi" path="res://src/enemy/enemy_types/01. sproingy/SproingyModelView.tscn" id="6_hpkd1"]
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dvixg"]
|
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dvixg"]
|
||||||
shading_mode = 0
|
shading_mode = 0
|
||||||
albedo_texture = ExtResource("3_hpkd1")
|
albedo_texture = ExtResource("3_3wl4s")
|
||||||
|
|
||||||
[node name="DataViewer" type="Control"]
|
[node name="DataViewer" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using Chickensoft.AutoInject;
|
using Chickensoft.AutoInject;
|
||||||
using Chickensoft.Introspection;
|
using Chickensoft.Introspection;
|
||||||
using Godot;
|
using Godot;
|
||||||
using Zennysoft.Ma.Adapter;
|
using Zennysoft.Ma.Adapter;
|
||||||
@@ -16,15 +16,15 @@ public partial class ExitRoom : DungeonRoom
|
|||||||
|
|
||||||
public override void _Ready()
|
public override void _Ready()
|
||||||
{
|
{
|
||||||
_exit.AreaEntered += Exit_AreaEntered;
|
_exit.AreaEntered += Exit_AreaEntered;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ExitReached()
|
public void ExitReached()
|
||||||
=> Game.FloorExitReached();
|
=> Game.FloorExitReached();
|
||||||
|
|
||||||
private void Exit_AreaEntered(Area3D area)
|
private void Exit_AreaEntered(Area3D area)
|
||||||
{
|
{
|
||||||
if (area.GetOwner() is IPlayer)
|
if (area.GetOwner() is IPlayer)
|
||||||
ExitReached();
|
ExitReached();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using Chickensoft.AutoInject;
|
using Chickensoft.AutoInject;
|
||||||
using Chickensoft.Introspection;
|
using Chickensoft.Introspection;
|
||||||
using Godot;
|
using Godot;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -19,47 +19,47 @@ public partial class MonsterRoom : DungeonRoom
|
|||||||
|
|
||||||
public override void _Ready()
|
public override void _Ready()
|
||||||
{
|
{
|
||||||
SpawnItems();
|
SpawnItems();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SpawnEnemies(EnemyDatabase enemyDatabase)
|
public void SpawnEnemies(EnemyDatabase enemyDatabase)
|
||||||
{
|
{
|
||||||
var rng = new RandomNumberGenerator();
|
var rng = new RandomNumberGenerator();
|
||||||
rng.Randomize();
|
rng.Randomize();
|
||||||
var enemySpawnPoints = EnemySpawnPoints.GetChildren();
|
var enemySpawnPoints = EnemySpawnPoints.GetChildren();
|
||||||
var numberOfEnemiesToSpawn = rng.RandiRange(1, enemySpawnPoints.Count);
|
var numberOfEnemiesToSpawn = rng.RandiRange(1, enemySpawnPoints.Count);
|
||||||
|
|
||||||
foreach (var spawnPoint in enemySpawnPoints.Cast<Marker3D>())
|
foreach (var spawnPoint in enemySpawnPoints.Cast<Marker3D>())
|
||||||
{
|
{
|
||||||
if (numberOfEnemiesToSpawn <= 0)
|
if (numberOfEnemiesToSpawn <= 0)
|
||||||
break;
|
break;
|
||||||
numberOfEnemiesToSpawn--;
|
numberOfEnemiesToSpawn--;
|
||||||
|
|
||||||
var enemy = enemyDatabase.EnemyList[rng.RandWeighted(enemyDatabase.SpawnRate)];
|
var enemy = enemyDatabase.EnemyList[rng.RandWeighted(enemyDatabase.SpawnRate)];
|
||||||
var instantiatedEnemy = enemy.Instantiate<Enemy>();
|
var instantiatedEnemy = enemy.Instantiate<Enemy>();
|
||||||
instantiatedEnemy.Position = new Vector3(spawnPoint.Position.X, 0, spawnPoint.Position.Z);
|
instantiatedEnemy.Position = new Vector3(spawnPoint.Position.X, 0, spawnPoint.Position.Z);
|
||||||
AddChild(instantiatedEnemy);
|
AddChild(instantiatedEnemy);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SpawnItems()
|
private void SpawnItems()
|
||||||
{
|
{
|
||||||
var itemSpawnPoints = ItemSpawnPoints.GetChildren();
|
var itemSpawnPoints = ItemSpawnPoints.GetChildren();
|
||||||
var rng = new RandomNumberGenerator();
|
var rng = new RandomNumberGenerator();
|
||||||
rng.Randomize();
|
rng.Randomize();
|
||||||
var numberOfItemsToSpawn = rng.RandiRange(1, itemSpawnPoints.Count);
|
var numberOfItemsToSpawn = rng.RandiRange(1, itemSpawnPoints.Count);
|
||||||
itemSpawnPoints.Shuffle();
|
itemSpawnPoints.Shuffle();
|
||||||
var database = new ItemDatabase();
|
var database = new ItemDatabase();
|
||||||
foreach (var spawnPoint in itemSpawnPoints.Cast<Marker3D>())
|
foreach (var spawnPoint in itemSpawnPoints.Cast<Marker3D>())
|
||||||
{
|
{
|
||||||
if (numberOfItemsToSpawn <= 0)
|
if (numberOfItemsToSpawn <= 0)
|
||||||
break;
|
break;
|
||||||
numberOfItemsToSpawn--;
|
numberOfItemsToSpawn--;
|
||||||
|
|
||||||
var selectedItem = database.PickItem<InventoryItem>();
|
var selectedItem = database.PickItem<InventoryItem>();
|
||||||
var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as Node3D;
|
var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as Node3D;
|
||||||
duplicated.Position = new Vector3(spawnPoint.Position.X, -1.5f, spawnPoint.Position.Z);
|
duplicated.Position = new Vector3(spawnPoint.Position.X, -1.5f, spawnPoint.Position.Z);
|
||||||
AddChild(duplicated);
|
AddChild(duplicated);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
[gd_scene load_steps=71 format=4 uid="uid://dl6h1djc27ddl"]
|
[gd_scene load_steps=71 format=4 uid="uid://dl6h1djc27ddl"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://c1nhqlem1ew3m" path="res://src/map/dungeon/code/Floor0.cs" id="1_db2o3"]
|
[ext_resource type="Script" uid="uid://c1nhqlem1ew3m" path="res://src/map/dungeon/code/Floor0.cs" id="1_db2o3"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b27ksiyfefb33" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png" id="2_xh2ej"]
|
[ext_resource type="Texture2D" uid="uid://b27ksiyfefb33" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png" id="2_xh2ej"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cmfhbi07s4v5x" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png" id="3_aqomv"]
|
[ext_resource type="Texture2D" uid="uid://cmfhbi07s4v5x" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png" id="3_aqomv"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cfo5c1twdrnea" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg" id="4_db2o3"]
|
[ext_resource type="Texture2D" uid="uid://cfo5c1twdrnea" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg" id="4_db2o3"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cv1x0m6cicuf1" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png" id="5_ntxe5"]
|
[ext_resource type="Texture2D" uid="uid://cv1x0m6cicuf1" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png" id="5_ntxe5"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bsxq2b6r1xedi" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png" id="6_qlp0t"]
|
[ext_resource type="Texture2D" uid="uid://bsxq2b6r1xedi" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png" id="6_qlp0t"]
|
||||||
[ext_resource type="Texture2D" uid="uid://brtw6ge3sn163" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg" id="7_7d58j"]
|
[ext_resource type="Texture2D" uid="uid://brtw6ge3sn163" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg" id="7_7d58j"]
|
||||||
[ext_resource type="Texture2D" uid="uid://g5lvjjwd602c" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png" id="8_ofv7i"]
|
[ext_resource type="Texture2D" uid="uid://g5lvjjwd602c" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png" id="8_ofv7i"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cx8bbg4nf5r0y" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png" id="9_mi7rk"]
|
[ext_resource type="Texture2D" uid="uid://cx8bbg4nf5r0y" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png" id="9_mi7rk"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cas887pxmge0w" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png" id="10_he1ou"]
|
[ext_resource type="Texture2D" uid="uid://cas887pxmge0w" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png" id="10_he1ou"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c4vnrq42usiy3" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png" id="11_rufnk"]
|
[ext_resource type="Texture2D" uid="uid://c4vnrq42usiy3" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png" id="11_rufnk"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cfuyb56nnkgvt" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_effed-TILES-2.png" id="12_t3xa0"]
|
[ext_resource type="Texture2D" uid="uid://doml1v4oqdqsh" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_effed-TILES-2.png" id="12_t3xa0"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dyufabjcwlago" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_HAND_CYCLE_MOTIF.png" id="13_1i307"]
|
[ext_resource type="Texture2D" uid="uid://bfo0jebrk6wav" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_HAND_CYCLE_MOTIF.png" id="13_1i307"]
|
||||||
[ext_resource type="Texture2D" uid="uid://4k6vtn4oip5f" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_TILE4.png" id="14_qqc7i"]
|
[ext_resource type="Texture2D" uid="uid://4k6vtn4oip5f" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_TILE4.png" id="14_qqc7i"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cururtxtgylxf" path="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_COLUMN.jpg" id="15_ojbcg"]
|
[ext_resource type="Texture2D" uid="uid://bhttrt4aqu1d7" path="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_COLUMN.jpg" id="15_ojbcg"]
|
||||||
[ext_resource type="PackedScene" uid="uid://db206brufi83s" path="res://src/items/weapons/Weapon.tscn" id="16_aqomv"]
|
[ext_resource type="PackedScene" uid="uid://db206brufi83s" path="res://src/items/weapons/Weapon.tscn" id="16_aqomv"]
|
||||||
[ext_resource type="PackedScene" uid="uid://1fl6s352e2ej" path="res://src/items/throwable/ThrowableItem.tscn" id="16_db2o3"]
|
[ext_resource type="PackedScene" uid="uid://1fl6s352e2ej" path="res://src/items/throwable/ThrowableItem.tscn" id="16_db2o3"]
|
||||||
[ext_resource type="Resource" uid="uid://cfhwlpa0d7wb4" path="res://src/items/weapons/resources/MysteryRod.tres" id="17_db2o3"]
|
[ext_resource type="Resource" uid="uid://cfhwlpa0d7wb4" path="res://src/items/weapons/resources/MysteryRod.tres" id="17_db2o3"]
|
||||||
|
|||||||
@@ -6,17 +6,17 @@
|
|||||||
[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://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="PackedScene" uid="uid://bs56ccgosmu47" path="res://src/enemy/enemy_types/01. sproingy/Sproingy.tscn" id="9_atq1f"]
|
||||||
[ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="10_5rblf"]
|
[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="Texture2D" uid="uid://crsw35eypj6ry" path="res://src/map/dungeon/models/Outdated/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="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="Texture2D" uid="uid://dpv6gobmdhgq5" path="res://src/map/dungeon/models/Outdated/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="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="Texture2D" uid="uid://ldk1iveo0da5" path="res://src/map/dungeon/models/Outdated/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://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="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://db1toc6kj5uq8" path="res://src/map/dungeon/models/Outdated/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://3f43egfmyocx" path="res://src/map/dungeon/models/Outdated/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://bkvegamuqdsdd" path="res://src/map/dungeon/models/Outdated/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="Texture2D" uid="uid://bb4i5iu6c0jrt" path="res://src/map/dungeon/models/Outdated/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"]
|
[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"]
|
[sub_resource type="NavigationMesh" id="NavigationMesh_xw4dv"]
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
[gd_scene load_steps=20 format=3 uid="uid://dmiqwmivkjgmq"]
|
[gd_scene load_steps=20 format=3 uid="uid://dmiqwmivkjgmq"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_7txs6"]
|
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/rooms/Set A/03. Antechamber A.tscn" id="3_7txs6"]
|
||||||
[ext_resource type="PackedScene" uid="uid://i781lbf2wb22" path="res://src/map/dungeon/rooms/Set A/04. Antechamber B.tscn" id="4_k6xgr"]
|
[ext_resource type="PackedScene" uid="uid://i781lbf2wb22" path="res://src/map/dungeon/rooms/Set A/04. Tree Antechamber.tscn" id="4_k6xgr"]
|
||||||
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_r7shj"]
|
[ext_resource type="PackedScene" uid="uid://b82dx66mgs2d7" path="res://src/map/dungeon/rooms/Set A/08. Basin Room.tscn" id="4_r7shj"]
|
||||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_geyju"]
|
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_geyju"]
|
||||||
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="5_ld0kt"]
|
[ext_resource type="Script" uid="uid://dwt6302nsf4vq" path="res://src/map/dungeon/code/DungeonFloor.cs" id="5_ld0kt"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_jgovx"]
|
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_jgovx"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="7_86if8"]
|
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="7_86if8"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="8_lpc1g"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="8_lpc1g"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="9_4i2f8"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="9_4i2f8"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_lpelw"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_lpelw"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="10_5omre"]
|
[ext_resource type="PackedScene" uid="uid://dhm2lyfkrjugf" path="res://src/map/dungeon/rooms/Set A/11. Long Room.tscn" id="10_5omre"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_yvj8v"]
|
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_yvj8v"]
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="7_qjouh"]
|
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="7_qjouh"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="8_06hbf"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="8_06hbf"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_imrv0"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_imrv0"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="9_ym1ny"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="9_ym1ny"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c5eon2dk4ojua" path="res://src/map/dungeon/rooms/Set A/14. Ran's Room.tscn" id="10_1j6d5"]
|
[ext_resource type="PackedScene" uid="uid://c5eon2dk4ojua" path="res://src/map/dungeon/rooms/Set A/14. Ran's Room.tscn" id="10_1j6d5"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="11_0ea7q"]
|
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="11_0ea7q"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_kyvxc"]
|
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="11_kyvxc"]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_katpr"]
|
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_katpr"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_8pmtc"]
|
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_8pmtc"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_5wyu4"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_5wyu4"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="8_36gcj"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="8_36gcj"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_gn1yf"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_gn1yf"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_8amoj"]
|
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_8amoj"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_he2ag"]
|
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_he2ag"]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_ut4ij"]
|
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_ut4ij"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_lposy"]
|
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_lposy"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_mb8sd"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_mb8sd"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="8_573ke"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="8_573ke"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_puq45"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_puq45"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_ksplq"]
|
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_ksplq"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_slkpn"]
|
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_slkpn"]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_xalbn"]
|
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_xalbn"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_yfjr1"]
|
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_yfjr1"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_wnhhx"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_wnhhx"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="8_7s220"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="8_7s220"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_twkiu"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_twkiu"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_51vs0"]
|
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_51vs0"]
|
||||||
[ext_resource type="PackedScene" uid="uid://crf30tibwsnri" path="res://src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn" id="10_ltey6"]
|
[ext_resource type="PackedScene" uid="uid://crf30tibwsnri" path="res://src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn" id="10_ltey6"]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_fjqnq"]
|
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_fjqnq"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_bji1g"]
|
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_bji1g"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_sqvag"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_sqvag"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="8_c5i81"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="8_c5i81"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_lo82o"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_lo82o"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_fjqnq"]
|
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_fjqnq"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_xvcp8"]
|
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_xvcp8"]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_mir7f"]
|
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_mir7f"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_1elux"]
|
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_1elux"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_c68jx"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_c68jx"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="8_3lecr"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="8_3lecr"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_dtrr3"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_dtrr3"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_esh22"]
|
[ext_resource type="PackedScene" uid="uid://cihbmyo0ltq4m" path="res://src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn" id="10_esh22"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_vtwmp"]
|
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_vtwmp"]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_2admg"]
|
[ext_resource type="PackedScene" uid="uid://b7111krf365x0" path="res://src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn" id="5_2admg"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_fuh3g"]
|
[ext_resource type="PackedScene" uid="uid://c1qicmrcg6q6x" path="res://src/map/dungeon/rooms/Set A/09. Column Room.tscn" id="6_fuh3g"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_lk05i"]
|
[ext_resource type="PackedScene" uid="uid://dfpyfpnya0f4u" path="res://src/map/dungeon/rooms/Set A/13. Water Room.tscn" id="7_lk05i"]
|
||||||
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. Statue Room.tscn" id="8_b81ow"]
|
[ext_resource type="PackedScene" uid="uid://vdhl32je6hq2" path="res://src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn" id="8_b81ow"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_tl40f"]
|
[ext_resource type="PackedScene" uid="uid://cam640h4euewx" path="res://src/map/dungeon/rooms/Set A/05. Pit Room A.tscn" id="9_tl40f"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_glh5y"]
|
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/rooms/Set A/18. Corridor A.tscn" id="10_glh5y"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="10_iljqd"]
|
[ext_resource type="PackedScene" uid="uid://cw33vpar237pm" path="res://src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn" id="10_iljqd"]
|
||||||
|
|||||||
@@ -4,12 +4,12 @@ importer="scene"
|
|||||||
importer_version=1
|
importer_version=1
|
||||||
type="PackedScene"
|
type="PackedScene"
|
||||||
uid="uid://co0fmuno2pjc7"
|
uid="uid://co0fmuno2pjc7"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER.1.glb-8ef6d8b4e58bfda1c6633f82a4f76e00.scn"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER.1.glb-6a030518ff300d9e1756c050bb28e4dc.scn"
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER.1.glb"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER.1.glb"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER.1.glb-8ef6d8b4e58bfda1c6633f82a4f76e00.scn"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER.1.glb-6a030518ff300d9e1756c050bb28e4dc.scn"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cmfhbi07s4v5x"
|
uid="uid://cmfhbi07s4v5x"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png-b40443ffbacfcb74caea373deabfe0d6.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png-8cd59ad6edbc435982c9052638144017.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png-b40443ffbacfcb74caea373deabfe0d6.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_BOULDER_DARK.png-8cd59ad6edbc435982c9052638144017.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cx8bbg4nf5r0y"
|
uid="uid://cx8bbg4nf5r0y"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png-094fbe687a81f18802f7c4c7e74324e4.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png-40493453a785daa2bfbc8b6e57a8549d.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png-094fbe687a81f18802f7c4c7e74324e4.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_COLUM2N.png-40493453a785daa2bfbc8b6e57a8549d.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bhttrt4aqu1d7"
|
||||||
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_COLUMN.jpg-56b9950db8f917c75f54f6f808c1bb53.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_COLUMN.jpg"
|
||||||
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_COLUMN.jpg-56b9950db8f917c75f54f6f808c1bb53.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
|
||||||
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://buj20s21gq0n7"
|
||||||
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_HAND_CYCLE_MOTIF.png-8fbf4e7f88c58c347c99d58177548881.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_HAND_CYCLE_MOTIF.png"
|
||||||
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_HAND_CYCLE_MOTIF.png-8fbf4e7f88c58c347c99d58177548881.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
|
||||||
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 9.6 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bsxq2b6r1xedi"
|
uid="uid://bsxq2b6r1xedi"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png-37e7e126ea06853de4472efcb41d4348.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png-6719ba19fb1c11bc4f74ccfa491758d0.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png-37e7e126ea06853de4472efcb41d4348.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Inside-Stone.png-6719ba19fb1c11bc4f74ccfa491758d0.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://4k6vtn4oip5f"
|
||||||
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_TILE4.png-340d6a29d3eac4c33a9522b78d23c153.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "7b53babe76d0484b408a519f8fc329b5"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_TILE4.png"
|
||||||
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_TILE4.png-340d6a29d3eac4c33a9522b78d23c153.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
|
||||||
|
Before Width: | Height: | Size: 638 KiB After Width: | Height: | Size: 638 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://g5lvjjwd602c"
|
uid="uid://g5lvjjwd602c"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png-4e5d2cb28f82163262c52a4f899a9e73.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png-cad5a1ae2f95e2430d3c6909b623a490.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png-4e5d2cb28f82163262c52a4f899a9e73.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Water-Pool 2.png-cad5a1ae2f95e2430d3c6909b623a490.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cas887pxmge0w"
|
uid="uid://cas887pxmge0w"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png-0a3a4d74a9cbe4fc0798c8da9872f2be.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png-4698c109d25d213193bba9264bf0e3f4.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png-0a3a4d74a9cbe4fc0798c8da9872f2be.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_Worked-Stone-Outside.png-4698c109d25d213193bba9264bf0e3f4.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 195 KiB After Width: | Height: | Size: 195 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cfo5c1twdrnea"
|
uid="uid://cfo5c1twdrnea"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg-4af27efcc8cc3c8505b51c696af6d5a0.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg-b6c3e6a7c5556daafd15c3656b4cc51c.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg-4af27efcc8cc3c8505b51c696af6d5a0.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_concrete_0025_color_1k.jpg-b6c3e6a7c5556daafd15c3656b4cc51c.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://defbo5k7wewxn"
|
||||||
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_effed-TILES-2.png-6ba13e43e997b4242230c127d5c6c99a.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_effed-TILES-2.png"
|
||||||
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_effed-TILES-2.png-6ba13e43e997b4242230c127d5c6c99a.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
|
||||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://c4vnrq42usiy3"
|
uid="uid://c4vnrq42usiy3"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png-5a50a1086ce7eac09eb5c2593d0c1ded.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png-77b3bafe8035ccd869b3303027f50275.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png-5a50a1086ce7eac09eb5c2593d0c1ded.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_hand-tiile.png-77b3bafe8035ccd869b3303027f50275.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 138 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://brtw6ge3sn163"
|
uid="uid://brtw6ge3sn163"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg-0c1f3529a1cb0ea50774c6efe234de45.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg-e345b1ad12c3d313b5ffd0581759a95a.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg-0c1f3529a1cb0ea50774c6efe234de45.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_marble_0008_color_1k.jpg-e345b1ad12c3d313b5ffd0581759a95a.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cv1x0m6cicuf1"
|
uid="uid://cv1x0m6cicuf1"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png-da6b5441f59d8c70e49f23f48e4f992e.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png-d0f5a9305d42d9ee2b9ed89621cce643.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png-da6b5441f59d8c70e49f23f48e4f992e.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_darker_brick.png-d0f5a9305d42d9ee2b9ed89621cce643.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b27ksiyfefb33"
|
uid="uid://b27ksiyfefb33"
|
||||||
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png-8f1cfe708cd4f5cef519a8a8769d89e3.ctex"
|
path="res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png-7847f2911d002d9be0e12be46bd77827.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/02. Altar/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png"
|
source_file="res://src/map/dungeon/models/Altar/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png"
|
||||||
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png-8f1cfe708cd4f5cef519a8a8769d89e3.ctex"]
|
dest_files=["res://.godot/imported/02_ALTAR_FLOOR_ZER0_VER_outside_desert.png-7847f2911d002d9be0e12be46bd77827.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -4,12 +4,12 @@ importer="scene"
|
|||||||
importer_version=1
|
importer_version=1
|
||||||
type="PackedScene"
|
type="PackedScene"
|
||||||
uid="uid://j7xsk4fv6f4q"
|
uid="uid://j7xsk4fv6f4q"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER.2.glb-1386710b91f286bcc4b571eb2cba3d4a.scn"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER.2.glb-59a2b5863937681061d495903efa7e5d.scn"
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER.2.glb"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER.2.glb"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER.2.glb-1386710b91f286bcc4b571eb2cba3d4a.scn"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER.2.glb-59a2b5863937681061d495903efa7e5d.scn"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://kdu1ncykry2c"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_CEILING_1.jpg-47974c7ffb985ba5a5f18abad8136e9b.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_CEILING_1.jpg"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_CEILING_1.jpg-47974c7ffb985ba5a5f18abad8136e9b.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
|
||||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://ijhbc6b4kod7"
|
uid="uid://ijhbc6b4kod7"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_CHAIN_TEX.png-18a34f5e84fbc5470e5ef518b8426448.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_CHAIN_TEX.png-73089de858244e1686ad6b53e62b0e32.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_CHAIN_TEX.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_CHAIN_TEX.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_CHAIN_TEX.png-18a34f5e84fbc5470e5ef518b8426448.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_CHAIN_TEX.png-73089de858244e1686ad6b53e62b0e32.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bfnve3em22nmm"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_COLUM2N.png-7fb6e39cd5897c5d12996ec6295ca931.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "aa07ab7f59f9440053a56b318be20581"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_COLUM2N.png"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_COLUM2N.png-7fb6e39cd5897c5d12996ec6295ca931.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
|
||||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://ckxf8h0l8ftrg"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_COLUMN.jpg-f3c7dc0da4336b4571df5ba34aa0f4cc.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "b534d6c15a62da0430767b1a0f3b687f"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_COLUMN.jpg"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_COLUMN.jpg-f3c7dc0da4336b4571df5ba34aa0f4cc.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
|
||||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://l18d2clk2yqy"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_FLOOR1.jpg-a7a4ddf96db2ac1baee06877e39b18c4.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "e23dd1b477467088dbb6f6690c77ad73"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_FLOOR1.jpg"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_FLOOR1.jpg-a7a4ddf96db2ac1baee06877e39b18c4.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
|
||||||
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://nljdi5gnv0wr"
|
uid="uid://nljdi5gnv0wr"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_HAND_CYCLE_MOTIF.png-cb1fdf0d433c22f4f1f664eb43595cc9.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_HAND_CYCLE_MOTIF.png-62043b87078dc988408eaa36fb2d322e.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_HAND_CYCLE_MOTIF.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_HAND_CYCLE_MOTIF.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_HAND_CYCLE_MOTIF.png-cb1fdf0d433c22f4f1f664eb43595cc9.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_HAND_CYCLE_MOTIF.png-62043b87078dc988408eaa36fb2d322e.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bln2sy5wq5pe"
|
uid="uid://bln2sy5wq5pe"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_RAIL_TRANSPARENT_PLANE.png-a13a658b06f9dfa25637bb0c6c68ef81.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_RAIL_TRANSPARENT_PLANE.png-41118a8adfeb2b481fe118f825bbd7bc.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_RAIL_TRANSPARENT_PLANE.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_RAIL_TRANSPARENT_PLANE.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_RAIL_TRANSPARENT_PLANE.png-a13a658b06f9dfa25637bb0c6c68ef81.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_RAIL_TRANSPARENT_PLANE.png-41118a8adfeb2b481fe118f825bbd7bc.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://ptsisd285o78"
|
uid="uid://ptsisd285o78"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_1png.png-8245bfc79f8a004686a036b4ad457d73.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_1png.png-de442a9aa778ff414efa33427e85275c.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_STONE_PANEL_1png.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_STONE_PANEL_1png.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_1png.png-8245bfc79f8a004686a036b4ad457d73.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_1png.png-de442a9aa778ff414efa33427e85275c.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bbursm2okpai1"
|
uid="uid://bbursm2okpai1"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_2png.png-08eae61ef29e7f24da3fed3908cbd24f.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_2png.png-e3a913cd27668dac72e246f5fe30aec1.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_STONE_PANEL_2png.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_STONE_PANEL_2png.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_2png.png-08eae61ef29e7f24da3fed3908cbd24f.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_STONE_PANEL_2png.png-e3a913cd27668dac72e246f5fe30aec1.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bmfo6fgtbxq1"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_TILE4.png-c28fdccb45be4b73cbb9ce527fe37cfd.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_TILE4.png"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_TILE4.png-c28fdccb45be4b73cbb9ce527fe37cfd.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
|
||||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://rgb2yskvc0vr"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_TILE5.png-815e694270fdf869eb8907765c454173.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_TILE5.png"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_TILE5.png-815e694270fdf869eb8907765c454173.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
|
||||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bi15saxjglte6"
|
uid="uid://bi15saxjglte6"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_WALL TILE 1.jpg-3d773869a76aa26bf131fb2b0aa16659.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_WALL TILE 1.jpg-8946721ff5a7b93dc6f3a04ffd493bc8.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_WALL TILE 1.jpg"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_WALL TILE 1.jpg"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_WALL TILE 1.jpg-3d773869a76aa26bf131fb2b0aa16659.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_WALL TILE 1.jpg-8946721ff5a7b93dc6f3a04ffd493bc8.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://g73ge3i3bgp3"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_brick3.png-5f4bd33e0bcf7d73f706fd55b571f92a.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "4e53f276338db9090e7f2fdc2c90feb2"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_brick3.png"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_brick3.png-5f4bd33e0bcf7d73f706fd55b571f92a.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
|
||||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b7gt3fwya16oi"
|
uid="uid://b7gt3fwya16oi"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_brick_corridor_corrected.png-0215ddac5afb54e9c7cfa722f72b6ade.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_brick_corridor_corrected.png-73d9553dc295dd82805968ad96be2a99.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_brick_corridor_corrected.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_brick_corridor_corrected.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_brick_corridor_corrected.png-0215ddac5afb54e9c7cfa722f72b6ade.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_brick_corridor_corrected.png-73d9553dc295dd82805968ad96be2a99.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dbik6ft5yc18f"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_concrete_0003_color_1k.png-db2a13cdb659cdf4f3a1ea38f57c3fcc.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_concrete_0003_color_1k.png"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_concrete_0003_color_1k.png-db2a13cdb659cdf4f3a1ea38f57c3fcc.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
|
||||||
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bajr2y337gww4"
|
uid="uid://bajr2y337gww4"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_darkbrick.png-f56c0a9cea642ef31cdd722b1b9ea62d.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_darkbrick.png-7f89cc4cc04f1c8f6df9d09af2d108f6.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_darkbrick.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_darkbrick.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_darkbrick.png-f56c0a9cea642ef31cdd722b1b9ea62d.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_darkbrick.png-7f89cc4cc04f1c8f6df9d09af2d108f6.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://drd0eshvpji01"
|
uid="uid://drd0eshvpji01"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_hand-tiile.png-be490ca544639651290a4cfb02681d79.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_hand-tiile.png-1b5e6b87b773c62e8457cf9bedf646ea.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_hand-tiile.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_hand-tiile.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_hand-tiile.png-be490ca544639651290a4cfb02681d79.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_hand-tiile.png-1b5e6b87b773c62e8457cf9bedf646ea.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b2ogoo8kn6yg8"
|
uid="uid://b2ogoo8kn6yg8"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_lower_corridor_lower.png-b83bce0af8db14e47065d81ecf1e01ce.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_lower_corridor_lower.png-f5d8edd6889f5098534aa7c2a7ae413c.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_lower_corridor_lower.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_lower_corridor_lower.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_lower_corridor_lower.png-b83bce0af8db14e47065d81ecf1e01ce.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_lower_corridor_lower.png-f5d8edd6889f5098534aa7c2a7ae413c.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://b7600l5at1q4n"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_mother.png-ff6b1e9ed0ecc461458a37d0ad9145ee.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_mother.png"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_mother.png-ff6b1e9ed0ecc461458a37d0ad9145ee.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
|
||||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://vjbe1lg810gh"
|
uid="uid://vjbe1lg810gh"
|
||||||
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_swirled_column.png-c449beb0c80f44ea8126fa63781d026c.ctex"
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_swirled_column.png-a74e033f9e6435c6656291e4e81a08e7.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/dungeon/models/Set A/15. Boss Floor A/15_A1_BOSS FLOOR A_VER_swirled_column.png"
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_swirled_column.png"
|
||||||
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_swirled_column.png-c449beb0c80f44ea8126fa63781d026c.ctex"]
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_swirled_column.png-a74e033f9e6435c6656291e4e81a08e7.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dj3dvigyjh7lr"
|
||||||
|
path="res://.godot/imported/15_A1_BOSS FLOOR A_VER_tile2.png-d3b6ee1ac2f5719033cba5245f9b9604.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "d7f876bee51403664d422b95f64dd4f7"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/15_A1_BOSS FLOOR A_VER_tile2.png"
|
||||||
|
dest_files=["res://.godot/imported/15_A1_BOSS FLOOR A_VER_tile2.png-d3b6ee1ac2f5719033cba5245f9b9604.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
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://7uqsqpk8jv22"
|
||||||
|
path="res://.godot/imported/BELL ANIMATIONS.glb-80b61455ed22f2926f5e99bd331661de.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/BELL ANIMATIONS.glb"
|
||||||
|
dest_files=["res://.godot/imported/BELL ANIMATIONS.glb-80b61455ed22f2926f5e99bd331661de.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=false
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
_subresources={}
|
||||||
|
gltf/naming_version=1
|
||||||
|
gltf/embedded_image_handling=1
|
||||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://df7dqlwnx6srv"
|
||||||
|
path="res://.godot/imported/BELL ANIMATIONS_CHAIN_TEX.png-7c81d7adbc51df56ce5e814708fc9723.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "23d9d131e0ad9c97741d45e74e39c3e2"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/BELL ANIMATIONS_CHAIN_TEX.png"
|
||||||
|
dest_files=["res://.godot/imported/BELL ANIMATIONS_CHAIN_TEX.png-7c81d7adbc51df56ce5e814708fc9723.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
|
||||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bi53t6xps6wuv"
|
||||||
|
path="res://.godot/imported/BELL ANIMATIONS_COLUMN.jpg-e67afb4689cea8a8960250ef6ef87e24.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "b534d6c15a62da0430767b1a0f3b687f"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/BELL ANIMATIONS_COLUMN.jpg"
|
||||||
|
dest_files=["res://.godot/imported/BELL ANIMATIONS_COLUMN.jpg-e67afb4689cea8a8960250ef6ef87e24.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
|
||||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://do87jproafm8t"
|
||||||
|
path="res://.godot/imported/BELL ANIMATIONS_concrete_0003_color_1k.png-914fd079b5cad22620527c3e78da0a19.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/BELL ANIMATIONS_concrete_0003_color_1k.png"
|
||||||
|
dest_files=["res://.godot/imported/BELL ANIMATIONS_concrete_0003_color_1k.png-914fd079b5cad22620527c3e78da0a19.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
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://bwsflqggxhsnb"
|
||||||
|
path="res://.godot/imported/BOSS ROOM BOXES.glb-d48c440d63e07be9f1385018fe0fb771.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/BOSS ROOM BOXES.glb"
|
||||||
|
dest_files=["res://.godot/imported/BOSS ROOM BOXES.glb-d48c440d63e07be9f1385018fe0fb771.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=false
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
_subresources={}
|
||||||
|
gltf/naming_version=1
|
||||||
|
gltf/embedded_image_handling=1
|
||||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bfagqn1jcks1a"
|
||||||
|
path="res://.godot/imported/BOSS ROOM BOXES_FLOOR1.jpg-ab2c5cd2fc5492a3413467c81fb57416.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/dungeon/models/Boss Floor A/BOSS ROOM BOXES_FLOOR1.jpg"
|
||||||
|
dest_files=["res://.godot/imported/BOSS ROOM BOXES_FLOOR1.jpg-ab2c5cd2fc5492a3413467c81fb57416.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
|
||||||