Implement boss room
@@ -8,6 +8,7 @@ transparency = 1
|
||||
albedo_color = Color(0, 1, 0, 0.164706)
|
||||
|
||||
[node name="Teleport" type="Area3D"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.09493, 0)
|
||||
collision_layer = 256
|
||||
collision_mask = 256
|
||||
|
||||
|
||||
40
src/map/dungeon/code/BossRoom.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using Chickensoft.AutoInject;
|
||||
using Chickensoft.Introspection;
|
||||
using Godot;
|
||||
using System.Linq;
|
||||
|
||||
namespace GameJamDungeon
|
||||
{
|
||||
[Meta(typeof(IAutoNode))]
|
||||
public partial class BossRoom : Node3D, IDungeonRoom
|
||||
{
|
||||
public override void _Notification(int what) => this.Notify(what);
|
||||
|
||||
[Dependency] public IGameRepo GameRepo => this.DependOn<IGameRepo>();
|
||||
|
||||
[Node] public Marker3D PlayerSpawn { get; set; } = default!;
|
||||
|
||||
[Node] public Marker3D TeleportSpawn { get; set; } = default!;
|
||||
|
||||
[Node] public Marker3D ItemSpawnPoint { get; set; } = default!;
|
||||
|
||||
[Node] public ItemDatabase ItemDatabase { get; set; } = default!;
|
||||
|
||||
public void Setup()
|
||||
{
|
||||
SpawnItems();
|
||||
}
|
||||
|
||||
private void SpawnItems()
|
||||
{
|
||||
var database = ItemDatabase.Initialize().OfType<ConsumableItem>().ToArray();
|
||||
var rng = new RandomNumberGenerator();
|
||||
rng.Randomize();
|
||||
var weights = database.Select(x => x.Info.SpawnRate).ToArray();
|
||||
var selectedItem = database[rng.RandWeighted(weights)];
|
||||
var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as Node3D;
|
||||
duplicated.Position = ItemSpawnPoint.Position;
|
||||
AddChild(duplicated);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,22 +7,17 @@ using System.Linq;
|
||||
|
||||
public interface IDungeonRoom : INode3D
|
||||
{
|
||||
DungeonRoomLogic DungeonRoomLogic { get; }
|
||||
public Marker3D PlayerSpawn { get; set; }
|
||||
public Marker3D TeleportSpawn { get; set; }
|
||||
}
|
||||
|
||||
[Meta(typeof(IAutoNode))]
|
||||
public partial class DungeonRoom : Node3D, IDungeonRoom, IProvide<DungeonRoomLogic>
|
||||
public partial class DungeonRoom : Node3D, IDungeonRoom
|
||||
{
|
||||
public override void _Notification(int what) => this.Notify(what);
|
||||
|
||||
DungeonRoomLogic IProvide<DungeonRoomLogic>.Value() => DungeonRoomLogic;
|
||||
|
||||
[Dependency] public IGameRepo GameRepo => this.DependOn<IGameRepo>();
|
||||
|
||||
public DungeonRoomLogic DungeonRoomLogic { get; set; } = default!;
|
||||
|
||||
[Node] public Marker3D PlayerSpawn { get; set; } = default!;
|
||||
|
||||
[Node] public Marker3D TeleportSpawn { get; set; } = default!;
|
||||
@@ -35,13 +30,8 @@ public partial class DungeonRoom : Node3D, IDungeonRoom, IProvide<DungeonRoomLog
|
||||
|
||||
[Node] public EnemyDatabase EnemyDatabase { get; set; } = default!;
|
||||
|
||||
public DungeonRoomLogic.IBinding DungeonRoomBinding { get; set; } = default!;
|
||||
|
||||
public void Setup()
|
||||
{
|
||||
DungeonRoomLogic = new DungeonRoomLogic();
|
||||
DungeonRoomLogic.Set(this as IDungeonRoom);
|
||||
DungeonRoomLogic.Set(GameRepo);
|
||||
SpawnItems();
|
||||
SpawnEnemies();
|
||||
}
|
||||
@@ -87,11 +77,4 @@ public partial class DungeonRoom : Node3D, IDungeonRoom, IProvide<DungeonRoomLog
|
||||
AddChild(instantiatedEnemy);
|
||||
}
|
||||
}
|
||||
|
||||
public void OnResolved()
|
||||
{
|
||||
DungeonRoomBinding = DungeonRoomLogic.Bind();
|
||||
DungeonRoomLogic.Start();
|
||||
this.Provide();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
using Chickensoft.Introspection;
|
||||
using Chickensoft.LogicBlocks;
|
||||
|
||||
namespace GameJamDungeon
|
||||
{
|
||||
public interface IDungeonRoomLogic : ILogicBlock<DungeonRoomLogic.State>;
|
||||
|
||||
[Meta, Id("dungeon_room_logic")]
|
||||
[LogicBlock(typeof(State), Diagram = true)]
|
||||
public partial class DungeonRoomLogic : LogicBlock<DungeonRoomLogic.State>, IDungeonRoomLogic
|
||||
{
|
||||
public override Transition GetInitialState() => To<State.Idle>();
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
using Chickensoft.Introspection;
|
||||
using Chickensoft.LogicBlocks;
|
||||
|
||||
namespace GameJamDungeon
|
||||
{
|
||||
public partial class DungeonRoomLogic
|
||||
{
|
||||
[Meta]
|
||||
public abstract partial record State : StateLogic<State>;
|
||||
}
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
using Chickensoft.Introspection;
|
||||
|
||||
namespace GameJamDungeon
|
||||
{
|
||||
public partial class DungeonRoomLogic
|
||||
{
|
||||
public partial record State
|
||||
{
|
||||
[Meta, Id("dungeon_room_logic_state_idle")]
|
||||
public partial record Idle : State
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
23
src/map/dungeon/floors/BossFloor.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Chickensoft.AutoInject;
|
||||
using Chickensoft.Introspection;
|
||||
using GameJamDungeon;
|
||||
using Godot;
|
||||
|
||||
[Meta(typeof(IAutoNode))]
|
||||
public partial class BossFloor : Node3D, IDungeonFloor
|
||||
{
|
||||
public override void _Notification(int what) => this.Notify(what);
|
||||
|
||||
private BossRoom BossRoom;
|
||||
|
||||
public void InitializeDungeon()
|
||||
{
|
||||
var bossRoomScene = GD.Load<PackedScene>($"res://src/map/dungeon/scenes/BossRoom.tscn");
|
||||
BossRoom = bossRoomScene.Instantiate<BossRoom>();
|
||||
AddChild(BossRoom);
|
||||
}
|
||||
|
||||
public Transform3D GetPlayerSpawnPoint() => BossRoom.PlayerSpawn.GlobalTransform;
|
||||
|
||||
public Vector3 GetTeleportSpawnPoint() => BossRoom.TeleportSpawn.GlobalPosition;
|
||||
}
|
||||
@@ -9,7 +9,7 @@ public interface IDungeonFloor : INode3D
|
||||
{
|
||||
void InitializeDungeon();
|
||||
|
||||
public Vector3 GetPlayerSpawnPoint();
|
||||
public Transform3D GetPlayerSpawnPoint();
|
||||
|
||||
public Vector3 GetTeleportSpawnPoint();
|
||||
}
|
||||
@@ -21,7 +21,7 @@ public partial class DungeonFloor : Node3D, IDungeonFloor
|
||||
|
||||
[Node] public GodotObject DungeonGenerator { get; set; } = default!;
|
||||
|
||||
private Vector3 _playerSpawnPoint;
|
||||
private Transform3D _playerSpawnPoint;
|
||||
|
||||
private Vector3 _teleportSpawnPoint;
|
||||
|
||||
@@ -33,14 +33,14 @@ public partial class DungeonFloor : Node3D, IDungeonFloor
|
||||
DungeonGenerator.Call("generate");
|
||||
Rooms = FindAllDungeonRooms([.. GetChildren()], Rooms);
|
||||
_playerSpawnPoint = RandomizePlayerSpawnPoint();
|
||||
_teleportSpawnPoint = RandomizeTeleportSpawnPointAwayFromPosition(_playerSpawnPoint);
|
||||
_teleportSpawnPoint = RandomizeTeleportSpawnPointAwayFromPosition(_playerSpawnPoint.Origin);
|
||||
}
|
||||
|
||||
public Vector3 GetPlayerSpawnPoint() => _playerSpawnPoint;
|
||||
public Transform3D GetPlayerSpawnPoint() => _playerSpawnPoint;
|
||||
|
||||
public Vector3 GetTeleportSpawnPoint() => _teleportSpawnPoint;
|
||||
|
||||
private Vector3 RandomizePlayerSpawnPoint()
|
||||
private Transform3D RandomizePlayerSpawnPoint()
|
||||
{
|
||||
var rng = new RandomNumberGenerator();
|
||||
rng.Randomize();
|
||||
@@ -49,7 +49,7 @@ public partial class DungeonFloor : Node3D, IDungeonFloor
|
||||
.Select(x => x.PlayerSpawn);
|
||||
var godotCollection = new Godot.Collections.Array<Marker3D>(randomSpawnLocations);
|
||||
var result = godotCollection.PickRandom();
|
||||
return result.GlobalPosition;
|
||||
return result.GlobalTransform;
|
||||
}
|
||||
|
||||
private Vector3 RandomizeTeleportSpawnPointAwayFromPosition(Vector3 target)
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
[gd_scene load_steps=5 format=3 uid="uid://bc1sp6xwe0j65"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="1_sr15j"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/scenes/Antechamber.tscn" id="3_hhw2n"]
|
||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/corridor/Corridor.tscn" id="4_pgrs5"]
|
||||
[ext_resource type="Script" path="res://src/map/dungeon/floors/DungeonFloor.cs" id="5_bsukb"]
|
||||
[ext_resource type="Script" path="res://src/map/dungeon/floors/DungeonFloor.cs" id="1_0ecnn"]
|
||||
[ext_resource type="Script" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="2_cxmwa"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpec2lbt83dhe" path="res://src/map/dungeon/scenes/Antechamber.tscn" id="3_tsw3y"]
|
||||
[ext_resource type="PackedScene" uid="uid://bn4gslp2gk8ds" path="res://src/map/dungeon/corridor/Corridor.tscn" id="4_gni6i"]
|
||||
|
||||
[node name="Floor1" type="Node3D"]
|
||||
script = ExtResource("5_bsukb")
|
||||
script = ExtResource("1_0ecnn")
|
||||
|
||||
[node name="DungeonGenerator" type="Node3D" parent="."]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("1_sr15j")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_hhw2n")])
|
||||
corridor_room_scene = ExtResource("4_pgrs5")
|
||||
script = ExtResource("2_cxmwa")
|
||||
room_scenes = Array[PackedScene]([ExtResource("3_tsw3y")])
|
||||
corridor_room_scene = ExtResource("4_gni6i")
|
||||
dungeon_size = Vector3i(20, 1, 20)
|
||||
voxel_scale = Vector3(4.12, 4, 4)
|
||||
voxel_scale = Vector3(4, 4, 4)
|
||||
generate_on_ready = false
|
||||
place_even_if_fail = true
|
||||
6
src/map/dungeon/floors/Floor11.tscn
Normal file
@@ -0,0 +1,6 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://g28xmp6cn16h"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/map/dungeon/floors/BossFloor.cs" id="1_gsbuk"]
|
||||
|
||||
[node name="Floor11" type="Node3D"]
|
||||
script = ExtResource("1_gsbuk")
|
||||
@@ -19,9 +19,9 @@ public partial class Overworld : Node3D, IDungeonFloor
|
||||
{
|
||||
}
|
||||
|
||||
public Vector3 GetPlayerSpawnPoint()
|
||||
public Transform3D GetPlayerSpawnPoint()
|
||||
{
|
||||
return PlayerSpawnPoint.GlobalPosition;
|
||||
return PlayerSpawnPoint.GlobalTransform;
|
||||
}
|
||||
|
||||
public Vector3 GetTeleportSpawnPoint()
|
||||
|
||||
|
Before Width: | Height: | Size: 7.4 KiB |
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bfx4ptnsetqu2"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_8311.png-a41b3b5bbb3410f1cc50a3c3252ab7fa.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "b6ed454d0648b1318f0873013b32bae5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_8311.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_8311.png-a41b3b5bbb3410f1cc50a3c3252ab7fa.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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: 30 KiB |
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c6tl265fpnqyi"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_BATHEAD.png-2105a0ca14e9c6fbe82a7857c3daf403.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "dd75fd6a9cb4abfc202736f50dcc544b"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_BATHEAD.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_BATHEAD.png-2105a0ca14e9c6fbe82a7857c3daf403.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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: 30 KiB |
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d2wfhufif82yn"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_BATHEAD_13.png-66a94495f09f2c25f96b8909ed1502ff.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "dd75fd6a9cb4abfc202736f50dcc544b"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_BATHEAD_13.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_BATHEAD_13.png-66a94495f09f2c25f96b8909ed1502ff.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dtl7ddfk5qltn"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_CEILING_1.jpg-4af9abcc4ebd3330462dd443c2828d38.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "3d6e3a1f727e4ba346b1f8bd49a76e28"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_CEILING_1.jpg"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_CEILING_1.jpg-4af9abcc4ebd3330462dd443c2828d38.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cjpw7h4r6y54b"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_CEILING_1_7.jpg-cc9fdf8b68ad3f2874c736e68f22d08a.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "3d6e3a1f727e4ba346b1f8bd49a76e28"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_CEILING_1_7.jpg"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_CEILING_1_7.jpg-cc9fdf8b68ad3f2874c736e68f22d08a.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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: 16 KiB |
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://li2lkcq8i2h0"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_CEILING_1_9.jpg-b8cd9530b2a75dee036c5a826808ccaf.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "3d6e3a1f727e4ba346b1f8bd49a76e28"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_CEILING_1_9.jpg"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_CEILING_1_9.jpg-b8cd9530b2a75dee036c5a826808ccaf.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://1mspgh5ue4tc"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_COLUMN.jpg-8367feec1df7f64a451cd4b1cab262ff.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "f898f2d5d45561b486ec94d473fbefce"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_COLUMN.jpg"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_COLUMN.jpg-8367feec1df7f64a451cd4b1cab262ff.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dmeji5w2ft1as"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_FLOOR1.jpg-239a5d80a2060b581e2d3bbd36cb3472.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "e23dd1b477467088dbb6f6690c77ad73"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_FLOOR1.jpg"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_FLOOR1.jpg-239a5d80a2060b581e2d3bbd36cb3472.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://q10n6j8dr6c0"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_STONE_PANEL_1png.png-aa53ec3f8d5ab55233741d70cbfdad10.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "227975486c1181a9276cf8c8194791a5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_STONE_PANEL_1png.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_STONE_PANEL_1png.png-aa53ec3f8d5ab55233741d70cbfdad10.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cmkfbhph5rui0"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_STONE_PANEL_2png.png-f619b2858abac722fde87458ed4128ec.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "250f3babc9d84771c41d8bf13023b798"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_STONE_PANEL_2png.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_STONE_PANEL_2png.png-f619b2858abac722fde87458ed4128ec.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b0d11o60nnn6y"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_TILE4.png-8376a68112129ce80aaf96f949914920.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "7b53babe76d0484b408a519f8fc329b5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_TILE4.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_TILE4.png-8376a68112129ce80aaf96f949914920.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://xgc2aaxm1pus"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_TILE5.png-1b483d9343de09c8576dbaf896521f9f.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "291187513aecb7604aa6994b9ca7a239"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_TILE5.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_TILE5.png-1b483d9343de09c8576dbaf896521f9f.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bxb1hp20ftfs0"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_WALL TILE 1.jpg-1ae4221c0b8b2643f36fd8f705cf36f6.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "c591bfa502b4a13cdf376c08035fb58d"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_WALL TILE 1.jpg"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_WALL TILE 1.jpg-1ae4221c0b8b2643f36fd8f705cf36f6.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bynp5h7thlmia"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_hand-tiile.png-9ef137001110fec0b075655a463a1420.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "d3ae9d17bf47107d7c4fdd341980bd5a"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_hand-tiile.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_hand-tiile.png-9ef137001110fec0b075655a463a1420.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bptgnd20q18au"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_swirled_column.png-9a5a05633930fbfd0ed33256249bfd3e.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "b95255ab479b02e2d0ee83096779cac5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_swirled_column.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_swirled_column.png-9a5a05633930fbfd0ed33256249bfd3e.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
@@ -1,38 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cqbc3tjhel86n"
|
||||
path.s3tc="res://.godot/imported/ANTECHAMBER_tile2.png-7188f0178a304e4d4965ba988b6211a4.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "d7f876bee51403664d422b95f64dd4f7"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER_tile2.png"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER_tile2.png-7188f0178a304e4d4965ba988b6211a4.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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
|
||||
BIN
src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR).glb
Normal file
@@ -3,13 +3,13 @@
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://dpmatw3mioaqk"
|
||||
path="res://.godot/imported/ANTECHAMBER.glb-230211bf5ee8df9b4ae9df3e7583b8dd.scn"
|
||||
uid="uid://buoic1hkf1ps3"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR).glb-3a152e47d24aacaac4a8ef319c01ad4f.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/antechamber/ANTECHAMBER.glb"
|
||||
dest_files=["res://.godot/imported/ANTECHAMBER.glb-230211bf5ee8df9b4ae9df3e7583b8dd.scn"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR).glb"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR).glb-3a152e47d24aacaac4a8ef319c01ad4f.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://6beuv73oky2b"
|
||||
path="res://.godot/imported/V2 Test1_CEILING_1_4.jpg-38e510792a94d17d01f735d19423049a.ctex"
|
||||
uid="uid://ctwqo3rf688cw"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_CEILING_1.jpg-f1ca323e30a3c78528107f6aa78d285b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_CEILING_1_4.jpg"
|
||||
dest_files=["res://.godot/imported/V2 Test1_CEILING_1_4.jpg-38e510792a94d17d01f735d19423049a.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_CEILING_1.jpg"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_CEILING_1.jpg-f1ca323e30a3c78528107f6aa78d285b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ktw5jgbh22um"
|
||||
path="res://.godot/imported/V2 Test1_CEILING_1.jpg-cdce2099283c538743cb604f838229e6.ctex"
|
||||
uid="uid://dpybwy1m7pfg7"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_CEILING_1_17.jpg-125d54b7017addab9a595a46499dfa6a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_CEILING_1.jpg"
|
||||
dest_files=["res://.godot/imported/V2 Test1_CEILING_1.jpg-cdce2099283c538743cb604f838229e6.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_CEILING_1_17.jpg"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_CEILING_1_17.jpg-125d54b7017addab9a595a46499dfa6a.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://nlmdd8auomcu"
|
||||
path="res://.godot/imported/V2 Test1_CHAIN_TEX.png-3a21cbf3291dbf878f404b98a7e16036.ctex"
|
||||
uid="uid://yafip7ghyqfo"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_CHAIN_TEX.png-ec9bddc06a90ff94c2ffb01273771fb1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_CHAIN_TEX.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_CHAIN_TEX.png-3a21cbf3291dbf878f404b98a7e16036.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_CHAIN_TEX.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_CHAIN_TEX.png-ec9bddc06a90ff94c2ffb01273771fb1.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dssmatdw4lwaw"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_COLUMN.jpg-c34177baac2e87c610c92a410ea86f37.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "f898f2d5d45561b486ec94d473fbefce"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_COLUMN.jpg"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_COLUMN.jpg-c34177baac2e87c610c92a410ea86f37.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 |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://deh12vc2t5xdg"
|
||||
path="res://.godot/imported/V2 Test1_FLOOR1.jpg-493a549fc19f5ca197541591f7fa05de.ctex"
|
||||
uid="uid://dq0nn4lvfqxn"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_FLOOR1.jpg-563dc75dae3663e77bd7eb764d1e19ae.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_FLOOR1.jpg"
|
||||
dest_files=["res://.godot/imported/V2 Test1_FLOOR1.jpg-493a549fc19f5ca197541591f7fa05de.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_FLOOR1.jpg"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_FLOOR1.jpg-563dc75dae3663e77bd7eb764d1e19ae.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
After Width: | Height: | Size: 51 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://4k6x3hgsij5c"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_HAND_CYCLE_MOTIF.png-9b9ebda9f16850e95d0d3f638f428734.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "4e98dc2cfcd7d8743e8fe74b03bd3712"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_HAND_CYCLE_MOTIF.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_HAND_CYCLE_MOTIF.png-9b9ebda9f16850e95d0d3f638f428734.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: 11 KiB After Width: | Height: | Size: 11 KiB |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cn28350jp61ri"
|
||||
path="res://.godot/imported/V2 Test1_STONE_PANEL_1png.png-9f414ac24bc7f3831f2cce156cc004c1.ctex"
|
||||
uid="uid://d3r5niap7f38p"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_1png.png-26a1dce9fe811354f6edf5fcd2235eea.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_STONE_PANEL_1png.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_STONE_PANEL_1png.png-9f414ac24bc7f3831f2cce156cc004c1.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_1png.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_1png.png-26a1dce9fe811354f6edf5fcd2235eea.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c2sre5rbbh6k1"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_1png_19.png-43af9c01158f23657ba9e687308d8882.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "227975486c1181a9276cf8c8194791a5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_1png_19.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_1png_19.png-43af9c01158f23657ba9e687308d8882.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: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bi2j674omivoo"
|
||||
path="res://.godot/imported/V2 Test1_STONE_PANEL_2png.png-2db904672af96a5b5647273a2b8ad789.ctex"
|
||||
uid="uid://1ahmiqby2xob"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_2png.png-f20757db321f8c2c8de411b9ca212f0e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_STONE_PANEL_2png.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_STONE_PANEL_2png.png-2db904672af96a5b5647273a2b8ad789.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_2png.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_2png.png-f20757db321f8c2c8de411b9ca212f0e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b2wnir28h0ac5"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_2png_18.png-e74d4b8086e8fb70f7a2de847bf59365.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "250f3babc9d84771c41d8bf13023b798"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_2png_18.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_STONE_PANEL_2png_18.png-e74d4b8086e8fb70f7a2de847bf59365.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: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -2,19 +2,19 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bbr315inwj6wk"
|
||||
path="res://.godot/imported/V2 Test1_BATHEAD_8.png-e43af8bb92f9a8343e59c9614f9eb8ed.ctex"
|
||||
uid="uid://cavpv71db17vj"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_TILE4.png-00a3ba805c1eb248444b16a242cc5af6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "dd75fd6a9cb4abfc202736f50dcc544b"
|
||||
"md5": "7b53babe76d0484b408a519f8fc329b5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_BATHEAD_8.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_BATHEAD_8.png-e43af8bb92f9a8343e59c9614f9eb8ed.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_TILE4.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_TILE4.png-00a3ba805c1eb248444b16a242cc5af6.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@@ -2,19 +2,19 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dqfppj2g03aew"
|
||||
path="res://.godot/imported/V2 Test1_BATHEAD.png-259c899c1b3c012615ac9223326d4931.ctex"
|
||||
uid="uid://1g54fxfcehar"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_TILE5.png-44e1a8c74992798cfec00a46b3ccf2da.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "dd75fd6a9cb4abfc202736f50dcc544b"
|
||||
"md5": "291187513aecb7604aa6994b9ca7a239"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_BATHEAD.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_BATHEAD.png-259c899c1b3c012615ac9223326d4931.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_TILE5.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_TILE5.png-44e1a8c74992798cfec00a46b3ccf2da.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ccwnfmq85eytv"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WALL TILE 1.jpg-61b4c72a81c6ed009a05167f2f1b5b0e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "c591bfa502b4a13cdf376c08035fb58d"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_WALL TILE 1.jpg"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WALL TILE 1.jpg-61b4c72a81c6ed009a05167f2f1b5b0e.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
|
||||
|
After Width: | Height: | Size: 28 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ctrfgartu43x"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WHITE_TILE2.png-99171443f889b21b158b88f5c6b3947f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "302bc6fbaf043ca91f183c6809052468"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_WHITE_TILE2.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WHITE_TILE2.png-99171443f889b21b158b88f5c6b3947f.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
|
||||
|
After Width: | Height: | Size: 20 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cee4k7qja3e4v"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WHITE_floor.png-da4a1297f36faddf4a93e2482c3388ed.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "67f0faf24a06a85088c0ff02c398e755"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_WHITE_floor.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WHITE_floor.png-da4a1297f36faddf4a93e2482c3388ed.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
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bhjin7l4cgw5g"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WHITE_layer_brick1.png-962d9bc61134eedb5a7af9bfb3c083be.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "0f1bbcb8659e18cfbbb60dbf2050a09f"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_WHITE_layer_brick1.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_WHITE_layer_brick1.png-962d9bc61134eedb5a7af9bfb3c083be.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
|
||||
BIN
src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_brick3.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dx1v234aq4h6y"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_brick3.png-560a99757c27e1594c27de0fc7c422c0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "4e53f276338db9090e7f2fdc2c90feb2"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_brick3.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_brick3.png-560a99757c27e1594c27de0fc7c422c0.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
|
||||
|
After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bww6ibafihphk"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_concrete_0003_color_1k.png-8e214af5af2353c7377bbb01071db179.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "e9d0d15dfb27e2595fee02f430f1a3df"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_concrete_0003_color_1k.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_concrete_0003_color_1k.png-8e214af5af2353c7377bbb01071db179.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 |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://45orrw6bhhj2"
|
||||
path="res://.godot/imported/V2 Test1_hand-tiile.png-368c8fffccb780dbe395a09ac8a9ae02.ctex"
|
||||
uid="uid://cb6s5n2yvrns3"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_hand-tiile.png-75870cf1322aec653918bc68aa3c6151.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_hand-tiile.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_hand-tiile.png-368c8fffccb780dbe395a09ac8a9ae02.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_hand-tiile.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_hand-tiile.png-75870cf1322aec653918bc68aa3c6151.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bt07lirqfdbo6"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_hand-tiile_21.png-a5a19812118c178268860fe54ac58fdb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "d3ae9d17bf47107d7c4fdd341980bd5a"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_hand-tiile_21.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_hand-tiile_21.png-a5a19812118c178268860fe54ac58fdb.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
|
||||
|
After Width: | Height: | Size: 41 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://uasterqcb1ba"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_lime_hand_relief.png-bd792a436be00823f322ec06865be38f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "1493c571147fcafccb4754b97c33ad1f"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_lime_hand_relief.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_lime_hand_relief.png-bd792a436be00823f322ec06865be38f.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
|
||||
BIN
src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_mother.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://da4biolvicw2g"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_mother.png-14a9c752d5a75b7bcf00b546bd1dbd39.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "0557edb32f31fcbcdb10c4c6f0694eab"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_mother.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_mother.png-14a9c752d5a75b7bcf00b546bd1dbd39.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
|
||||
|
After Width: | Height: | Size: 27 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bc3tr22bhcwv5"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_png-clipart-tibetan-buddhism-mandala-tibetan-buddhism-vajra-buddhism-religion-tibet.png-fd2e2331e3edec2f9f6e22fee11871f6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "e21f3a581507695c7d1c7ab7d04af742"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_png-clipart-tibetan-buddhism-mandala-tibetan-buddhism-vajra-buddhism-religion-tibet.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_png-clipart-tibetan-buddhism-mandala-tibetan-buddhism-vajra-buddhism-religion-tibet.png-fd2e2331e3edec2f9f6e22fee11871f6.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: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bdsyabkrmsf2i"
|
||||
path="res://.godot/imported/V2 Test1_swirled_column.png-4ff95b6a5ce03b3871eb87ddf61faee9.ctex"
|
||||
uid="uid://cy8mfl067g5qt"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_swirled_column.png-2fc12c177aeb9cde8f5b265ab287de41.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_swirled_column.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_swirled_column.png-4ff95b6a5ce03b3871eb87ddf61faee9.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_swirled_column.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_swirled_column.png-2fc12c177aeb9cde8f5b265ab287de41.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fh0uoytdy53c"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_swirled_column_20.png-8c8f8309903763aee8fb083d4fb92165.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "b95255ab479b02e2d0ee83096779cac5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_swirled_column_20.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_swirled_column_20.png-8c8f8309903763aee8fb083d4fb92165.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 |
@@ -2,8 +2,8 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://btmxbl137q1o0"
|
||||
path="res://.godot/imported/V2 Test1_tile2.png-46bc4d70f26a08bcc0492b1ee02b86f0.ctex"
|
||||
uid="uid://coaxjn16gatti"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_tile2.png-1af89c1b130101b39f84b5101c927526.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -13,8 +13,8 @@ generator_parameters={
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_tile2.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_tile2.png-46bc4d70f26a08bcc0492b1ee02b86f0.ctex"]
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_tile2.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_tile2.png-1af89c1b130101b39f84b5101c927526.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://chfwh55q1ehw2"
|
||||
path="res://.godot/imported/FLOOR 11 (BOSS FLOOR)_tile2_16.png-a45d5308335d40a268c7e5ba3716609f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "d7f876bee51403664d422b95f64dd4f7"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/boss/FLOOR 11 (BOSS FLOOR)_tile2_16.png"
|
||||
dest_files=["res://.godot/imported/FLOOR 11 (BOSS FLOOR)_tile2_16.png-a45d5308335d40a268c7e5ba3716609f.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
|
||||
@@ -1,36 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://x2wfgdsmnjur"
|
||||
path="res://.godot/imported/V2 Test1.glb-af618fa3c9dbbc4bd56030d353e88232.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1.glb"
|
||||
dest_files=["res://.godot/imported/V2 Test1.glb-af618fa3c9dbbc4bd56030d353e88232.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
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: 30 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 26 KiB |
@@ -1,37 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dn3c4nfpobdcs"
|
||||
path="res://.godot/imported/V2 Test1_CHAIN_TEX_13.png-9492e6ca2bf286c87802df5786b22e44.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "23d9d131e0ad9c97741d45e74e39c3e2"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/map/dungeon/models/test/V2 Test1_CHAIN_TEX_13.png"
|
||||
dest_files=["res://.godot/imported/V2 Test1_CHAIN_TEX_13.png-9492e6ca2bf286c87802df5786b22e44.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 |
|
Before Width: | Height: | Size: 1.2 MiB |