Item spawning

This commit is contained in:
2024-09-08 14:19:30 -07:00
parent 29a6d1072c
commit a47d1306b9
417 changed files with 17412 additions and 1019 deletions

View File

@@ -1,10 +1,9 @@
[gd_scene load_steps=7 format=3 uid="uid://dvnc26rebk6o0"]
[gd_scene load_steps=6 format=3 uid="uid://dvnc26rebk6o0"]
[ext_resource type="Script" path="res://src/map/dungeon/floors/Overworld.cs" id="1_5hmt3"]
[ext_resource type="Resource" uid="uid://lao0opxww3ib" path="res://src/dialog/Dialogue.dialogue" id="2_k62pf"]
[ext_resource type="PackedScene" uid="uid://c10nhqq8su6pp" path="res://src/items/weapons/models/RareSword.tscn" id="2_ni2nx"]
[ext_resource type="PackedScene" uid="uid://d4l4qutp8x40c" path="res://src/npc/goddess/Goddess.tscn" id="3_4sm8u"]
[ext_resource type="PackedScene" uid="uid://kt5fg0it26cf" path="res://src/dialog/Dialog.tscn" id="4_thkm7"]
[ext_resource type="PackedScene" path="res://src/dialog/Dialog.tscn" id="4_thkm7"]
[ext_resource type="PackedScene" uid="uid://dm82a44grkhut" path="res://src/map/overworld/HubWorld.tscn" id="6_t4x14"]
[sub_resource type="BoxShape3D" id="BoxShape3D_46qk4"]
size = Vector3(1.96582, 2.5011, 2.21289)
@@ -12,24 +11,17 @@ size = Vector3(1.96582, 2.5011, 2.21289)
[node name="Overworld" type="Node3D"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.63488, -5.13176)
script = ExtResource("1_5hmt3")
Dialogue = ExtResource("2_k62pf")
[node name="CSGBox3D" type="CSGBox3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.82007, 0.766602, -1.46094)
use_collision = true
flip_faces = true
size = Vector3(20, 10, 20)
[node name="PlayerSpawnPoint" type="Marker3D" parent="."]
unique_name_in_owner = true
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.03633, -4.09327, 6.89279)
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.03633, 0.654655, 6.89279)
[node name="ExitSpawnPoint" type="Marker3D" parent="." groups=["Exit"]]
unique_name_in_owner = true
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.49531, -3.12363, 0)
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.49531, 1.49242, 0)
[node name="Goddess" parent="." instance=ExtResource("3_4sm8u")]
transform = Transform3D(1.4, 0, 0, 0, 1.4, 0, 0, 0, 1.4, -8.84798, -2.93175, -3.9493)
transform = Transform3D(1.4, 0, 0, 0, 1.4, 0, 0, 0, 1.4, -8.84798, 1.52312, -3.9493)
[node name="Panel" parent="Goddess" instance=ExtResource("4_thkm7")]
unique_name_in_owner = true
@@ -43,5 +35,4 @@ collision_mask = 128
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.8395, -1.94114, -8.99061)
shape = SubResource("BoxShape3D_46qk4")
[node name="RareSword" parent="." instance=ExtResource("2_ni2nx")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -3.62022, 1.16685)
[node name="Node3D" parent="." instance=ExtResource("6_t4x14")]

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=6 format=3 uid="uid://u1e5ae7whhxg"]
[gd_scene load_steps=6 format=3 uid="uid://bc1sp6xwe0j65"]
[ext_resource type="Script" path="res://addons/SimpleDungeons/DungeonGenerator3D.gd" id="1_sr15j"]
[ext_resource type="PackedScene" uid="uid://dhpwwqow1ahrc" path="res://src/map/dungeon/rooms/Room1.tscn" id="2_dvdf4"]

View File

@@ -14,12 +14,15 @@ public partial class Overworld : Node3D, IDungeonFloor
[Node] public Area3D NPCBox { get; set; } = default!;
[Node] public Marker3D PlayerSpawnPoint { get; set; } = default!;
[Export] public Resource Dialogue { get; set; }
public void InitializeDungeon()
{
NPCBox.AreaEntered += NPCBox_AreaEntered;
NPCBox.AreaExited += NPCBox_AreaExited;
GameRepo.SetPlayerGlobalPosition(PlayerSpawnPoint.GlobalPosition);
}
private void NPCBox_AreaExited(Area3D area)

View File

@@ -3,6 +3,7 @@ using Chickensoft.GodotNodeInterfaces;
using Chickensoft.Introspection;
using GameJamDungeon;
using Godot;
using System.Linq;
public interface IDungeonRoom : INode3D
{
@@ -38,6 +39,7 @@ public partial class DungeonRoom : Node3D, IDungeonRoom, IProvide<DungeonRoomLog
DungeonRoomLogic = new DungeonRoomLogic();
DungeonRoomLogic.Set(this as IDungeonRoom);
DungeonRoomLogic.Set(GameRepo);
ItemDatabase.SpawnItems();
SpawnItems();
SpawnEnemies();
}
@@ -55,11 +57,13 @@ public partial class DungeonRoom : Node3D, IDungeonRoom, IProvide<DungeonRoomLog
break;
numberOfItemsToSpawn--;
var item = ItemDatabase.ItemScene[rng.RandWeighted(ItemDatabase.DropRate)];
var instantiatedItem = item.Instantiate<InventoryItem>();
instantiatedItem.Position = spawnPoint.Position;
AddChild(instantiatedItem);
GD.Print(instantiatedItem.Info.Name);
var weights = ItemDatabase.Database.Select(x => x.SpawnRate).ToArray();
var database = ItemDatabase.Database.Select(x => x.Item).ToArray();
var selectedItem = database[rng.RandWeighted(weights)];
var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as InventoryItem;
duplicated.Position = spawnPoint.Position;
AddChild(duplicated);
GD.Print(duplicated.Info.Name);
}
}

View File

@@ -1,10 +1,9 @@
[gd_scene load_steps=14 format=3 uid="uid://dhpwwqow1ahrc"]
[gd_scene load_steps=13 format=3 uid="uid://dhpwwqow1ahrc"]
[ext_resource type="Script" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_0tfda"]
[ext_resource type="Script" path="res://src/map/dungeon/rooms/DungeonRoom.cs" id="1_ti7ur"]
[ext_resource type="PackedScene" uid="uid://ckaw6wjmi0fom" path="res://src/map/dungeon/door/Door.tscn" id="2_mdawx"]
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="4_2mnb7"]
[ext_resource type="PackedScene" uid="uid://cgwtjleqvgubc" path="res://src/items/weapons/SealingRod.tscn" id="4_ivbn2"]
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="5_owpbq"]
[sub_resource type="PlaneMesh" id="PlaneMesh_luhnj"]
@@ -61,11 +60,10 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.053, -3, 0)
[node name="ItemDatabase" parent="." instance=ExtResource("4_2mnb7")]
unique_name_in_owner = true
ItemScene = Array[PackedScene]([ExtResource("4_ivbn2")])
DropRate = PackedFloat32Array(0)
[node name="EnemyDatabase" parent="." instance=ExtResource("5_owpbq")]
unique_name_in_owner = true
SpawnRate = PackedFloat32Array(1)
[node name="CSGBox3D" type="CSGBox3D" parent="."]
use_collision = true

View File

@@ -1,9 +1,8 @@
[gd_scene load_steps=15 format=3 uid="uid://bbwgmqy3evhh2"]
[gd_scene load_steps=14 format=3 uid="uid://bbwgmqy3evhh2"]
[ext_resource type="Script" path="res://addons/SimpleDungeons/DungeonRoom3D.gd" id="1_o02dd"]
[ext_resource type="Script" path="res://src/map/dungeon/rooms/DungeonRoom.cs" id="2_jrlll"]
[ext_resource type="PackedScene" uid="uid://twrj4wixcbu7" path="res://src/items/ItemDatabase.tscn" id="4_c51bx"]
[ext_resource type="PackedScene" uid="uid://cgwtjleqvgubc" path="res://src/items/weapons/SealingRod.tscn" id="4_n2mpv"]
[ext_resource type="PackedScene" uid="uid://ckaw6wjmi0fom" path="res://src/map/dungeon/door/Door.tscn" id="4_nh0nj"]
[ext_resource type="PackedScene" uid="uid://dbvr8ewajja6a" path="res://src/enemy/EnemyDatabase.tscn" id="5_fabiq"]
@@ -77,11 +76,10 @@ mesh = SubResource("PlaneMesh_j8q3j")
[node name="ItemDatabase" parent="." instance=ExtResource("4_c51bx")]
unique_name_in_owner = true
ItemScene = Array[PackedScene]([ExtResource("4_n2mpv")])
DropRate = PackedFloat32Array(1)
[node name="EnemyDatabase" parent="." instance=ExtResource("5_fabiq")]
unique_name_in_owner = true
SpawnRate = PackedFloat32Array(1)
[node name="CSGBox3D" type="CSGBox3D" parent="."]
use_collision = true

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,12 @@
# Blender 4.2.1 LTS MTL File: 'None'
# www.blender.org
newmtl Material
Ns 250.000000
Ka 1.000000 1.000000 1.000000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.450000
d 1.000000
illum 2
map_Kd /home/zenny/Desktop/gamejamdungeon/SeanResources/Textures/kenney_prototype-textures/stone.jpeg

View File

@@ -0,0 +1,433 @@
# Blender 4.2.1 LTS
# www.blender.org
mtllib block.mtl
o Cube
v 0.749106 0.757028 -0.705369
v 0.834590 -0.834210 -0.834469
v 0.812728 0.835963 0.820663
v 0.825095 -0.800881 0.816213
v -0.830032 0.836423 -0.833603
v -0.956283 -0.956539 -0.958333
v -0.839077 0.827590 0.833597
v -0.827590 -0.839077 0.833597
v 0.959049 -0.002335 -0.957603
v -0.968750 0.000000 0.968750
v 0.957604 -0.002335 0.959049
v -0.968750 0.000000 -0.968750
v -0.967212 -0.967405 0.000000
v 0.968474 0.967862 0.000936
v -0.968750 0.968750 0.000000
v 0.960599 -0.959864 -0.003338
v 1.000000 0.000000 0.000000
v -1.000000 0.000000 0.000000
v -0.958058 0.958591 -0.489606
v 0.958438 -0.958406 -0.489678
v -1.000000 0.000000 -0.500000
v -0.950298 -0.952605 -0.500000
v 0.951709 0.949547 -0.477310
v 1.000000 0.000000 -0.500000
v -0.957855 -0.958812 0.489605
v 0.957855 0.958812 0.489605
v 1.000000 0.000000 0.500000
v -0.958812 0.957855 0.489605
v 0.861002 -0.851222 0.449550
v -1.000000 0.000000 0.500000
v -0.958812 0.489105 0.958355
v 0.832315 0.453731 -0.811798
v 0.824100 0.462038 0.841947
v -0.958058 0.489841 -0.958356
v 1.000000 0.500000 0.000000
v -1.000000 0.500000 0.000000
v 0.990299 0.497665 -0.488853
v -1.000000 0.500000 -0.500000
v -1.000000 0.500000 0.500000
v 0.988854 0.497665 0.490299
v 0.958438 -0.489656 -0.958428
v 0.958812 -0.489105 0.958355
v -0.968750 -0.500000 -0.968750
v -0.957855 -0.490062 0.958355
v -1.000000 -0.500000 0.000000
v 1.000000 -0.500000 0.000000
v 1.000000 -0.500000 -0.500000
v -0.998462 -0.498655 -0.500000
v -1.000000 -0.500000 0.500000
v 0.991849 -0.491114 0.496662
v 0.000000 -0.968750 -0.968750
v 0.000000 0.968750 0.968750
v -0.002335 -0.957604 0.959049
v -0.012778 0.814855 -0.828752
v 0.000000 0.000000 -1.000000
v 0.000000 0.000000 1.000000
v 0.000000 -1.000000 0.000000
v -0.000376 0.997226 0.002774
v -0.003096 0.961563 -0.463110
v 0.000000 -1.000000 -0.500000
v 0.000000 -1.000000 0.500000
v 0.000000 1.000000 0.500000
v -0.004878 0.485156 -0.984668
v 0.000000 0.500000 1.000000
v 0.000000 -0.500000 1.000000
v 0.000000 -0.500000 -1.000000
v 0.462038 -0.824100 0.841947
v 0.410730 0.740709 -0.728563
v 0.495711 -0.003524 -0.994777
v 0.495378 0.984863 0.015950
v 0.478332 0.927255 -0.423737
v 0.499724 0.999112 0.500936
v 0.433222 0.439208 -0.909335
v 0.500000 -0.500000 -1.000000
v 0.489688 -0.958406 -0.958428
v 0.489105 0.958812 0.958355
v 0.500000 0.000000 1.000000
v 0.500000 -1.000000 0.000000
v 0.500000 -1.000000 -0.500000
v 0.489514 -0.979968 0.486961
v 0.488854 0.497665 0.990299
v 0.497665 -0.488854 0.990299
v -0.500000 -0.968750 -0.968750
v -0.490062 0.957855 0.958355
v -0.500000 0.000000 1.000000
v -0.500000 -1.000000 0.000000
v -0.498462 -0.998655 -0.500000
v -0.500000 -1.000000 0.500000
v -0.500000 0.500000 1.000000
v -0.500000 -0.500000 1.000000
v -0.489105 -0.958812 0.958355
v -0.489897 0.947271 -0.948246
v -0.500000 0.000000 -1.000000
v -0.500000 1.000000 0.000000
v -0.500100 0.998114 -0.498162
v -0.500000 1.000000 0.500000
v -0.500000 0.500000 -1.000000
v -0.500000 -0.500000 -1.000000
vn -0.2410 0.9401 0.2410
vn -0.2354 0.2354 0.9430
vn -0.9413 0.2388 -0.2388
vn 0.2176 -0.9333 0.2858
vn 0.9041 0.0570 0.4236
vn 0.1267 0.4435 -0.8873
vn 0.0850 0.0064 -0.9964
vn 0.9966 -0.0074 0.0816
vn -0.9979 -0.0015 -0.0649
vn -0.0785 -0.0113 0.9968
vn -1.0000 -0.0000 -0.0000
vn 1.0000 -0.0000 -0.0000
vn 0.9967 0.0764 -0.0289
vn 0.0886 -0.9961 -0.0017
vn -0.9969 0.0781 0.0109
vn -0.0763 0.9970 -0.0130
vn -0.2158 0.9456 -0.2436
vn 0.2339 -0.9437 -0.2339
vn 0.7712 0.2178 -0.5982
vn 0.9960 -0.0005 -0.0897
vn -1.0000 -0.0015 -0.0015
vn -0.9968 0.0788 -0.0116
vn -0.9456 0.2301 0.2301
vn -0.9968 -0.0118 0.0790
vn 0.9999 -0.0083 0.0083
vn 0.9975 0.0671 0.0230
vn 0.2038 -0.9665 0.1562
vn -0.0790 0.9968 0.0118
vn 0.9999 0.0113 0.0113
vn -0.9969 0.0108 0.0780
vn 0.9510 0.1777 -0.2529
vn 0.9999 0.0098 -0.0098
vn 0.1435 0.2748 -0.9507
vn 0.9517 0.1762 0.2514
vn -0.9968 0.0116 -0.0788
vn -0.0785 0.0113 0.9969
vn 0.9684 -0.2094 0.1358
vn -0.9401 -0.2410 0.2410
vn -0.9960 -0.0875 -0.0198
vn 0.9439 -0.2335 -0.2335
vn 0.9961 -0.0878 -0.0023
vn -0.9967 -0.0807 0.0101
vn -0.2354 -0.2354 0.9430
vn -0.9975 -0.0667 -0.0251
vn 0.9157 -0.3890 0.1008
vn 0.2336 -0.2336 -0.9439
vn -0.0000 -0.0665 -0.9978
vn 0.1618 -0.2365 0.9581
vn 0.0098 0.0098 0.9999
vn 0.0156 0.0156 -0.9998
vn 0.0136 0.9998 -0.0174
vn -0.0000 -1.0000 -0.0000
vn -0.0013 -0.9979 -0.0651
vn 0.1748 0.8735 -0.4543
vn 0.0530 0.9932 -0.1035
vn -0.0013 -1.0000 -0.0013
vn 0.0098 -0.0098 0.9999
vn -0.0000 -0.0000 -1.0000
vn 0.1705 0.2540 -0.9521
vn 0.0012 -0.9959 0.0907
vn 0.0213 0.0678 0.9975
vn 0.0117 0.9970 0.0772
vn 0.2422 0.9395 0.2422
vn 0.4102 0.0635 0.9098
vn 0.0791 -0.0107 0.9968
vn -0.0115 0.9966 -0.0820
vn -0.0603 0.8276 -0.5581
vn 0.0613 0.9981 -0.0049
vn 0.2365 0.1618 0.9581
vn 0.0750 -0.4247 0.9022
vn 0.0112 -0.0784 -0.9969
vn 0.0914 0.1141 -0.9893
vn 0.0205 -0.9996 0.0205
vn 0.0112 -0.9969 -0.0784
vn 0.0053 0.0053 -1.0000
vn 0.2385 0.4660 -0.8520
vn 0.1860 -0.9531 0.2389
vn -0.2301 -0.9456 0.2301
vn -0.2223 0.2483 -0.9428
vn -0.0665 -0.0000 -0.9978
vn -0.0852 -0.9962 -0.0177
vn -0.0643 -0.9976 -0.0274
vn -0.0796 -0.9968 0.0094
vn -0.0785 0.0113 -0.9968
vn -0.0456 -0.0456 -0.9979
vn -0.0006 -0.0898 0.9960
vn -0.0000 -0.0000 1.0000
vn 0.0028 1.0000 -0.0028
vn 0.2017 0.9520 -0.2304
vn 0.0409 0.9984 -0.0390
vn -0.0113 0.0785 0.9968
vn -0.0118 0.9968 0.0790
vt 2.386677 0.712399
vt 2.782394 0.712399
vt 2.782394 1.108117
vt 2.386677 1.108117
vt 0.803806 2.295269
vt 1.199524 2.295269
vt 1.199524 2.690987
vt 0.803806 2.690987
vt 0.562500 0.187500
vt 0.625000 0.187500
vt 0.625000 0.250000
vt 0.562500 0.250000
vt 0.312500 0.687500
vt 0.375000 0.687500
vt 0.375000 0.750000
vt 0.312500 0.750000
vt 0.803806 0.712399
vt 1.199524 0.712399
vt 1.199524 1.108117
vt 0.803806 1.108117
vt 0.803806 -0.870471
vt 1.199524 -0.870471
vt 1.199524 -0.474753
vt 0.803806 -0.474753
vt 0.437500 0.437500
vt 0.500000 0.437500
vt 0.500000 0.500000
vt 0.437500 0.500000
vt 0.012371 0.712399
vt 0.408089 0.712399
vt 0.408089 1.108117
vt 0.012371 1.108117
vt 0.437500 0.187500
vt 0.500000 0.187500
vt 0.500000 0.250000
vt 0.437500 0.250000
vt 0.012371 2.295269
vt 0.408089 2.295269
vt 0.408089 2.690987
vt 0.012371 2.690987
vt 0.437500 0.062500
vt 0.500000 0.062500
vt 0.500000 0.125000
vt 0.437500 0.125000
vt 0.012371 -0.079036
vt 0.408089 -0.079036
vt 0.408089 0.316681
vt 0.012371 0.316681
vt 0.803806 -0.079036
vt 1.199524 -0.079036
vt 1.199524 0.316681
vt 0.803806 0.316681
vt 0.312500 0.562500
vt 0.375000 0.562500
vt 0.375000 0.625000
vt 0.312500 0.625000
vt 0.562500 0.062500
vt 0.625000 0.062500
vt 0.625000 0.125000
vt 0.562500 0.125000
vt 2.386677 -0.079036
vt 2.782394 -0.079036
vt 2.782394 0.316681
vt 2.386677 0.316681
vt 0.812500 0.500000
vt 0.875000 0.500000
vt 0.875000 0.562500
vt 0.812500 0.562500
vt 0.312500 0.500000
vt 0.375000 0.500000
vt 0.012371 -0.474753
vt 0.408089 -0.474753
vt 0.562500 0.000000
vt 0.625000 0.000000
vt 0.437500 0.000000
vt 0.500000 0.000000
vt 0.562500 0.437500
vt 0.562500 0.500000
vt -0.383347 0.316681
vt -0.383347 0.712399
vt 0.375000 0.000000
vt 0.375000 0.062500
vt 0.375000 0.125000
vt 0.375000 0.187500
vt -0.383347 -0.474753
vt -0.383347 -0.079036
vt 0.375000 0.937500
vt 0.437500 0.937500
vt 0.437500 1.000000
vt 0.375000 1.000000
vt 0.375000 0.250000
vt -0.383347 1.108117
vt 0.375000 0.437500
vt 0.375000 0.312500
vt 0.437500 0.312500
vt 0.437500 0.375000
vt 0.375000 0.375000
vt -0.383347 1.503834
vt 0.012371 1.503834
vt 0.012371 1.899552
vt -0.383347 1.899552
vt 0.408089 1.503834
vt 0.803806 1.503834
vt 0.803806 1.899552
vt 0.408089 1.899552
vt 0.500000 0.312500
vt 0.562500 0.312500
vt 0.562500 0.375000
vt 0.500000 0.375000
vt 1.595242 0.316681
vt 1.990959 0.316681
vt 1.990959 0.712399
vt 1.595242 0.712399
vt 0.187500 0.625000
vt 0.250000 0.625000
vt 0.250000 0.687500
vt 0.187500 0.687500
vt 0.187500 0.500000
vt 0.250000 0.500000
vt 0.250000 0.562500
vt 0.187500 0.562500
vt 1.595242 -0.474753
vt 1.990959 -0.474753
vt 1.990959 -0.079036
vt 1.595242 -0.079036
vt 0.625000 0.312500
vt 0.625000 0.375000
vt 0.250000 0.750000
vt 0.187500 0.750000
vt 1.199524 1.503834
vt 1.199524 1.899552
vt 1.990959 1.108117
vt 1.595242 1.108117
vt 0.625000 0.437500
vt 0.125000 0.687500
vt 0.125000 0.750000
vt 0.125000 0.562500
vt 0.125000 0.625000
vt 0.125000 0.500000
vt -0.383347 2.295269
vt 2.386677 -0.474753
s 0
usemtl Material
f 96/1/1 28/2/1 7/3/1 84/4/1
f 89/5/2 84/6/2 7/7/2 31/8/2
f 38/9/3 19/10/3 5/11/3 34/12/3
f 80/13/4 29/14/4 4/15/4 67/16/4
f 40/17/5 26/18/5 3/19/5 33/20/5
f 73/21/6 68/22/6 1/23/6 32/24/6
f 74/25/7 69/26/7 9/27/7 41/28/7
f 50/29/8 27/30/8 11/31/8 42/32/8
f 48/33/9 21/34/9 12/35/9 43/36/9
f 90/37/10 85/38/10 10/39/10 44/40/10
f 49/41/11 30/42/11 18/43/11 45/44/11
f 47/45/12 24/46/12 17/47/12 46/48/12
f 37/49/13 23/50/13 14/51/13 35/52/13
f 79/53/14 20/54/14 16/55/14 78/56/14
f 39/57/15 28/58/15 15/59/15 36/60/15
f 95/61/16 19/62/16 15/63/16 94/64/16
f 92/65/17 5/66/17 19/67/17 95/68/17
f 75/69/18 2/70/18 20/54/18 79/53/18
f 32/24/19 1/23/19 23/50/19 37/49/19
f 41/71/20 9/72/20 24/46/20 47/45/20
f 45/44/21 18/43/21 21/34/21 48/33/21
f 36/60/22 15/59/22 19/10/22 38/9/22
f 31/73/23 7/74/23 28/58/23 39/57/23
f 44/75/24 10/76/24 30/42/24 49/41/24
f 46/48/25 17/47/25 27/30/25 50/29/25
f 35/52/26 14/51/26 26/18/26 40/17/26
f 78/56/27 16/55/27 29/14/27 80/13/27
f 94/64/28 15/63/28 28/2/28 96/1/28
f 17/47/29 35/52/29 40/17/29 27/30/29
f 10/76/30 31/73/30 39/57/30 30/42/30
f 18/43/11 36/60/11 38/9/11 21/34/11
f 9/72/31 32/24/31 37/49/31 24/46/31
f 30/42/11 39/57/11 36/60/11 18/43/11
f 24/46/32 37/49/32 35/52/32 17/47/32
f 69/26/33 73/77/33 32/78/33 9/27/33
f 27/30/34 40/17/34 33/20/34 11/31/34
f 21/34/35 38/9/35 34/12/35 12/35/35
f 85/38/36 89/5/36 31/8/36 10/39/36
f 16/79/37 46/48/37 50/29/37 29/80/37
f 8/81/38 44/75/38 49/41/38 25/82/38
f 13/83/39 45/44/39 48/33/39 22/84/39
f 2/85/40 41/71/40 47/45/40 20/86/40
f 20/86/41 47/45/41 46/48/41 16/79/41
f 25/82/42 49/41/42 45/44/42 13/83/42
f 91/87/43 90/88/43 44/89/43 8/90/43
f 22/84/44 48/33/44 43/36/44 6/91/44
f 29/80/45 50/29/45 42/32/45 4/92/45
f 75/93/46 74/25/46 41/28/46 2/70/46
f 83/94/47 98/95/47 66/96/47 51/97/47
f 67/98/48 82/99/48 65/100/48 53/101/48
f 77/102/49 81/103/49 64/104/49 56/105/49
f 93/106/50 97/107/50 63/108/50 55/109/50
f 70/110/51 58/111/51 62/112/51 72/113/51
f 86/114/52 57/115/52 61/116/52 88/117/52
f 83/118/53 51/119/53 60/120/53 87/121/53
f 68/122/54 54/123/54 59/124/54 71/125/54
f 71/125/55 59/124/55 58/111/55 70/110/55
f 87/121/56 60/120/56 57/115/56 86/114/56
f 82/99/57 77/102/57 56/105/57 65/100/57
f 98/95/58 93/106/58 55/109/58 66/96/58
f 97/107/59 92/126/59 54/127/59 63/108/59
f 88/117/60 61/116/60 53/128/60 91/129/60
f 81/103/61 76/130/61 52/131/61 64/104/61
f 72/113/62 62/112/62 52/132/62 76/133/62
f 26/18/63 72/113/63 76/133/63 3/19/63
f 33/20/64 3/19/64 76/130/64 81/103/64
f 42/32/65 11/31/65 77/102/65 82/99/65
f 23/50/66 71/125/66 70/110/66 14/51/66
f 1/23/67 68/122/67 71/125/67 23/50/67
f 14/51/68 70/110/68 72/113/68 26/18/68
f 11/31/69 33/20/69 81/103/69 77/102/69
f 4/92/70 42/32/70 82/99/70 67/98/70
f 51/97/71 66/96/71 74/25/71 75/93/71
f 55/109/72 63/108/72 73/77/72 69/26/72
f 57/115/73 78/56/73 80/13/73 61/116/73
f 51/119/74 75/69/74 79/53/74 60/120/74
f 60/120/52 79/53/52 78/56/52 57/115/52
f 66/96/75 55/109/75 69/26/75 74/25/75
f 63/108/76 54/127/76 68/134/76 73/77/76
f 61/116/77 80/13/77 67/16/77 53/128/77
f 25/135/78 88/117/78 91/129/78 8/136/78
f 34/12/79 5/11/79 92/126/79 97/107/79
f 43/36/80 12/35/80 93/106/80 98/95/80
f 22/137/81 87/121/81 86/114/81 13/138/81
f 6/139/82 83/118/82 87/121/82 22/137/82
f 13/138/83 86/114/83 88/117/83 25/135/83
f 12/35/84 34/12/84 97/107/84 93/106/84
f 6/91/85 43/36/85 98/95/85 83/94/85
f 53/101/86 65/100/86 90/37/86 91/140/86
f 56/105/87 64/104/87 89/5/87 85/38/87
f 58/111/88 94/64/88 96/1/88 62/112/88
f 54/123/89 92/141/89 95/61/89 59/124/89
f 59/124/90 95/61/90 94/64/90 58/111/90
f 65/100/87 56/105/87 85/38/87 90/37/87
f 64/104/91 52/131/91 84/6/91 89/5/91
f 62/112/92 96/1/92 84/4/92 52/132/92

View File

@@ -0,0 +1,21 @@
[remap]
importer="wavefront_obj"
importer_version=1
type="Mesh"
uid="uid://dw5bnw8bkb6w8"
path="res://.godot/imported/block.obj-e80c8c88f1276c5acf359f666c3d88b9.mesh"
[deps]
files=["res://.godot/imported/block.obj-e80c8c88f1276c5acf359f666c3d88b9.mesh"]
source_file="res://src/map/overworld/Models/block.obj"
dest_files=["res://.godot/imported/block.obj-e80c8c88f1276c5acf359f666c3d88b9.mesh", "res://.godot/imported/block.obj-e80c8c88f1276c5acf359f666c3d88b9.mesh"]
[params]
generate_tangents=true
scale_mesh=Vector3(1, 1, 1)
offset_mesh=Vector3(0, 0, 0)
force_disable_mesh_compression=false

View File

@@ -0,0 +1,12 @@
# Blender 4.2.1 LTS MTL File: 'raft.blend'
# www.blender.org
newmtl Material.006
Ns 250.000000
Ka 1.000000 1.000000 1.000000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.500000
d 1.000000
illum 2
map_Kd /home/zenny/Desktop/gamejamdungeon/SeanResources/Textures/kenney_prototype-textures/stick.jpeg

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,21 @@
[remap]
importer="wavefront_obj"
importer_version=1
type="Mesh"
uid="uid://df5fykeos37m1"
path="res://.godot/imported/raft.obj-740340cd383da379e548113ce036a62f.mesh"
[deps]
files=["res://.godot/imported/raft.obj-740340cd383da379e548113ce036a62f.mesh"]
source_file="res://src/map/overworld/Models/raft.obj"
dest_files=["res://.godot/imported/raft.obj-740340cd383da379e548113ce036a62f.mesh", "res://.godot/imported/raft.obj-740340cd383da379e548113ce036a62f.mesh"]
[params]
generate_tangents=true
scale_mesh=Vector3(1, 1, 1)
offset_mesh=Vector3(0, 0, 0)
force_disable_mesh_compression=false

View File

@@ -0,0 +1,12 @@
# Blender 4.2.1 LTS MTL File: 'tree.blend'
# www.blender.org
newmtl tree2.001
Ns 250.000000
Ka 1.000000 1.000000 1.000000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.500000
d 1.000000
illum 2
map_Kd /home/zenny/Desktop/gamejamdungeon/SeanResources/Textures/kenney_prototype-textures/treetexture.jpeg

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,21 @@
[remap]
importer="wavefront_obj"
importer_version=1
type="Mesh"
uid="uid://bb46flkajcbtd"
path="res://.godot/imported/tree.obj-281b9d08362c08435b85530e7b31e981.mesh"
[deps]
files=["res://.godot/imported/tree.obj-281b9d08362c08435b85530e7b31e981.mesh"]
source_file="res://src/map/overworld/Models/tree.obj"
dest_files=["res://.godot/imported/tree.obj-281b9d08362c08435b85530e7b31e981.mesh", "res://.godot/imported/tree.obj-281b9d08362c08435b85530e7b31e981.mesh"]
[params]
generate_tangents=true
scale_mesh=Vector3(1, 1, 1)
offset_mesh=Vector3(0, 0, 0)
force_disable_mesh_compression=false

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d1lvru72jvm27"
path="res://.godot/imported/Bricks091_1K-JPG_Color.jpg-97dc8d978c19ba9129d9cee67f57d5be.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/Bricks091_1K-JPG_Color.jpg"
dest_files=["res://.godot/imported/Bricks091_1K-JPG_Color.jpg-97dc8d978c19ba9129d9cee67f57d5be.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bcd6bwetryay"
path="res://.godot/imported/Metal041B_2K-JPG_Color.jpg-608e9987701a24c03cd88311cafdc469.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/Metal041B_2K-JPG_Color.jpg"
dest_files=["res://.godot/imported/Metal041B_2K-JPG_Color.jpg-608e9987701a24c03cd88311cafdc469.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cpnsqe0x0njv2"
path="res://.godot/imported/Metal054C_1K-JPG_Color.jpg-4a4f55cfd53271b9ab187754a07421e2.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/Metal054C_1K-JPG_Color.jpg"
dest_files=["res://.godot/imported/Metal054C_1K-JPG_Color.jpg-4a4f55cfd53271b9ab187754a07421e2.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c27kbjthdnbq0"
path="res://.godot/imported/SA003.JPG-06e13a75214e9c66c2f2c1dfb205e1a7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA003.JPG"
dest_files=["res://.godot/imported/SA003.JPG-06e13a75214e9c66c2f2c1dfb205e1a7.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dlwtmlo8rbvl6"
path="res://.godot/imported/SA010.JPG-6569ec110330cb15a354971ccbf8315f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA010.JPG"
dest_files=["res://.godot/imported/SA010.JPG-6569ec110330cb15a354971ccbf8315f.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dsx72effnfmnr"
path="res://.godot/imported/SA018.JPG-7ff274771acb01bde4f17b0369651460.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA018.JPG"
dest_files=["res://.godot/imported/SA018.JPG-7ff274771acb01bde4f17b0369651460.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ciq7m6imu1esq"
path="res://.godot/imported/SA019.JPG-8acf52e909a70e2db36129ea5563b8c9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA019.JPG"
dest_files=["res://.godot/imported/SA019.JPG-8acf52e909a70e2db36129ea5563b8c9.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dimflqvkhmyd8"
path="res://.godot/imported/SA021.JPG-f8881dc6b7b6486db1c5bf9d08e1dfb2.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA021.JPG"
dest_files=["res://.godot/imported/SA021.JPG-f8881dc6b7b6486db1c5bf9d08e1dfb2.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dikvo5rbjx2yd"
path="res://.godot/imported/SA024.JPG-3ba4d687213c31f8733929d384d06087.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA024.JPG"
dest_files=["res://.godot/imported/SA024.JPG-3ba4d687213c31f8733929d384d06087.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bbx1t8fqb2yur"
path="res://.godot/imported/SA064.JPG-f4ce5fc7bf25f1b5ef556eee7b4e3145.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA064.JPG"
dest_files=["res://.godot/imported/SA064.JPG-f4ce5fc7bf25f1b5ef556eee7b4e3145.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cj6frtfa23yak"
path="res://.godot/imported/SA067.JPG-fd0408fd85fe416b2883789340a92b68.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA067.JPG"
dest_files=["res://.godot/imported/SA067.JPG-fd0408fd85fe416b2883789340a92b68.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dpadiyea8w7p5"
path="res://.godot/imported/SA069.JPG-4b758746fb760b3ab417af064e292ea0.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA069.JPG"
dest_files=["res://.godot/imported/SA069.JPG-4b758746fb760b3ab417af064e292ea0.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c7g1br5hojhw4"
path="res://.godot/imported/SA133.JPG-be77b94197dcfde96d6fd09b002b946c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA133.JPG"
dest_files=["res://.godot/imported/SA133.JPG-be77b94197dcfde96d6fd09b002b946c.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dcep232oeumm4"
path="res://.godot/imported/SA140.JPG-74cd28643f0219d82056fe12780f54b1.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA140.JPG"
dest_files=["res://.godot/imported/SA140.JPG-74cd28643f0219d82056fe12780f54b1.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://f2r87ea6g8dh"
path="res://.godot/imported/SA142.JPG-842af2946cc439a9e0e01377097b3be8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA142.JPG"
dest_files=["res://.godot/imported/SA142.JPG-842af2946cc439a9e0e01377097b3be8.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://daknneks0t1bv"
path="res://.godot/imported/SA145.JPG-a165234babadf290269bb1672d54f25c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA145.JPG"
dest_files=["res://.godot/imported/SA145.JPG-a165234babadf290269bb1672d54f25c.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://deppeu3aw7v67"
path="res://.godot/imported/SA146.JPG-7c0f63061c92174f306ad9bd7dfdcdf3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA146.JPG"
dest_files=["res://.godot/imported/SA146.JPG-7c0f63061c92174f306ad9bd7dfdcdf3.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dmtivtt862ol5"
path="res://.godot/imported/SA150.JPG-bf032fd8932190970c68e47f4b70b317.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA150.JPG"
dest_files=["res://.godot/imported/SA150.JPG-bf032fd8932190970c68e47f4b70b317.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bo2y6h5i82jfq"
path="res://.godot/imported/SA163.JPG-57de245813e355785616dc75daf240f7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA163.JPG"
dest_files=["res://.godot/imported/SA163.JPG-57de245813e355785616dc75daf240f7.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b4wkbngutsqut"
path="res://.godot/imported/SA164.JPG-4ed993d5e86050147d07fbfceb7796de.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA164.JPG"
dest_files=["res://.godot/imported/SA164.JPG-4ed993d5e86050147d07fbfceb7796de.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bod5rmpvu36ui"
path="res://.godot/imported/SA197.JPG-f7649dd3cf40b35184a2e2a8ab39635f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA197.JPG"
dest_files=["res://.godot/imported/SA197.JPG-f7649dd3cf40b35184a2e2a8ab39635f.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bjr7t52hxk05i"
path.s3tc="res://.godot/imported/SA198.JPG-6188e7a660ff781c41bec7e972b4fa21.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA198.JPG"
dest_files=["res://.godot/imported/SA198.JPG-6188e7a660ff781c41bec7e972b4fa21.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://djkqonnqtr381"
path="res://.godot/imported/SA199.JPG-1d3452293c2a4a9dd25c0efc3049f651.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA199.JPG"
dest_files=["res://.godot/imported/SA199.JPG-1d3452293c2a4a9dd25c0efc3049f651.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://gusb3w6eh0h1"
path="res://.godot/imported/SA200.JPG-000eac3f1098b65258816543d1b2ab3c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/SA200.JPG"
dest_files=["res://.godot/imported/SA200.JPG-000eac3f1098b65258816543d1b2ab3c.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://wp1tfin03jvw"
path="res://.godot/imported/bricks_0012_color_1k.jpg-c58bb1a8de58a0f87fac7ce012904291.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/bricks_0012_color_1k.jpg"
dest_files=["res://.godot/imported/bricks_0012_color_1k.jpg-c58bb1a8de58a0f87fac7ce012904291.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c6p2em42c5g3s"
path="res://.godot/imported/concrete_0003_color_1k.jpg-2f4e4f06b7c0849bcb371ce77a9bd668.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/concrete_0003_color_1k.jpg"
dest_files=["res://.godot/imported/concrete_0003_color_1k.jpg-2f4e4f06b7c0849bcb371ce77a9bd668.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://btvscuoryuuaw"
path="res://.godot/imported/concrete_0017_color_1k.jpg-2b5665acc8d523eaeffc77394ddb9e9d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/concrete_0017_color_1k.jpg"
dest_files=["res://.godot/imported/concrete_0017_color_1k.jpg-2b5665acc8d523eaeffc77394ddb9e9d.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cee6i58tw8gyh"
path="res://.godot/imported/concrete_0025_color_1k.jpg-32a1d54289d6f4d0fdc82cb51ed08284.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/concrete_0025_color_1k.jpg"
dest_files=["res://.godot/imported/concrete_0025_color_1k.jpg-32a1d54289d6f4d0fdc82cb51ed08284.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://533ju8qt5wrm"
path.s3tc="res://.godot/imported/concrete_0031_color_1k.jpg-a0b2c06ff07addac33be240eb48709a4.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/concrete_0031_color_1k.jpg"
dest_files=["res://.godot/imported/concrete_0031_color_1k.jpg-a0b2c06ff07addac33be240eb48709a4.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cst0ejexw6eo0"
path="res://.godot/imported/ground_0007_color_1k.jpg-23bbb3ed2a85d404abf17cac8fa83e3b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/ground_0007_color_1k.jpg"
dest_files=["res://.godot/imported/ground_0007_color_1k.jpg-23bbb3ed2a85d404abf17cac8fa83e3b.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ttx6qlf7uxhe"
path.s3tc="res://.godot/imported/ground_0014_color_1k.jpg-fa6f7425e82e17da40992bdabcb7abf6.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/ground_0014_color_1k.jpg"
dest_files=["res://.godot/imported/ground_0014_color_1k.jpg-fa6f7425e82e17da40992bdabcb7abf6.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c4bo636hn6a0r"
path="res://.godot/imported/ground_0016_color_1k.jpg-0a262ad6b75261045c7e1efcc14e5678.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/ground_0016_color_1k.jpg"
dest_files=["res://.godot/imported/ground_0016_color_1k.jpg-0a262ad6b75261045c7e1efcc14e5678.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dyqluk1t5cqgx"
path="res://.godot/imported/ground_0024_color_1k.jpg-294e793392c3433e74eda19b5ba4b883.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/ground_0024_color_1k.jpg"
dest_files=["res://.godot/imported/ground_0024_color_1k.jpg-294e793392c3433e74eda19b5ba4b883.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cdkb0pnlms3kn"
path="res://.godot/imported/marble_0008_color_1k.jpg-ffa6a97a0171b20c4ff26de8c5033d97.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/marble_0008_color_1k.jpg"
dest_files=["res://.godot/imported/marble_0008_color_1k.jpg-ffa6a97a0171b20c4ff26de8c5033d97.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://crw78qay4hik8"
path="res://.godot/imported/marble_0009_color_1k.jpg-acbd9f805c25185c8be8e262206daca8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/marble_0009_color_1k.jpg"
dest_files=["res://.godot/imported/marble_0009_color_1k.jpg-acbd9f805c25185c8be8e262206daca8.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://6lp12llllddg"
path="res://.godot/imported/marble_0017_color_1k.jpg-e97e917050c6263014fa091fabedeaff.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/marble_0017_color_1k.jpg"
dest_files=["res://.godot/imported/marble_0017_color_1k.jpg-e97e917050c6263014fa091fabedeaff.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b401w8nfd65cq"
path="res://.godot/imported/metal_0004_color_1k.jpg-8f829599b925eacf06774376c3414af1.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/metal_0004_color_1k.jpg"
dest_files=["res://.godot/imported/metal_0004_color_1k.jpg-8f829599b925eacf06774376c3414af1.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://s4trhy0l50k0"
path="res://.godot/imported/metal_0029_color_1k.jpg-4262b487fc42e673fd7a120278f89585.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/metal_0029_color_1k.jpg"
dest_files=["res://.godot/imported/metal_0029_color_1k.jpg-4262b487fc42e673fd7a120278f89585.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://o0eppmd3blc2"
path="res://.godot/imported/metal_0059_color_1k.jpg-d6389e101cbb19f40dfccda29d99234a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/metal_0059_color_1k.jpg"
dest_files=["res://.godot/imported/metal_0059_color_1k.jpg-d6389e101cbb19f40dfccda29d99234a.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://7q0uquy73suq"
path="res://.godot/imported/metal_0065_color_1k.jpg-1cbc741f654edfbdeb3f36b16ad4c523.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/metal_0065_color_1k.jpg"
dest_files=["res://.godot/imported/metal_0065_color_1k.jpg-1cbc741f654edfbdeb3f36b16ad4c523.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=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bxodl26dnwrkc"
path.s3tc="res://.godot/imported/others_0020_color_1k.jpg-97b8044fdd674dcae730cb9bfc8fbca4.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/others_0020_color_1k.jpg"
dest_files=["res://.godot/imported/others_0020_color_1k.jpg-97b8044fdd674dcae730cb9bfc8fbca4.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cqg4d04mce8q4"
path="res://.godot/imported/rock_0005_color_1k.jpg-a3fd01a9b093b56206c0b3c8378af4cc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/map/overworld/Textures/SMALLER1/rock_0005_color_1k.jpg"
dest_files=["res://.godot/imported/rock_0005_color_1k.jpg-a3fd01a9b093b56206c0b3c8378af4cc.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=1

Some files were not shown because too many files have changed in this diff Show More