Add overworld
@@ -94,7 +94,7 @@ stretch = true
|
|||||||
[node name="SubViewport" type="SubViewport" parent="SubViewportContainer"]
|
[node name="SubViewport" type="SubViewport" parent="SubViewportContainer"]
|
||||||
transparent_bg = true
|
transparent_bg = true
|
||||||
handle_input_locally = false
|
handle_input_locally = false
|
||||||
size = Vector2i(1280, 720)
|
size = Vector2i(1920, 1080)
|
||||||
render_target_update_mode = 4
|
render_target_update_mode = 4
|
||||||
|
|
||||||
[node name="PauseContainer" type="Node3D" parent="SubViewportContainer/SubViewport"]
|
[node name="PauseContainer" type="Node3D" parent="SubViewportContainer/SubViewport"]
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
[gd_scene load_steps=5 format=3 uid="uid://by67pn7fdsg1m"]
|
[gd_scene load_steps=6 format=3 uid="uid://by67pn7fdsg1m"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://14e8mu48ed4" path="res://src/map/Map.cs" id="1_bw70o"]
|
[ext_resource type="Script" uid="uid://14e8mu48ed4" path="res://src/map/Map.cs" id="1_bw70o"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://dvnc26rebk6o0" path="res://src/map/overworld/Overworld.tscn" id="2_s7lwc"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dl6h1djc27ddl" path="res://src/map/dungeon/floors/Floor00.tscn" id="3_s7lwc"]
|
[ext_resource type="PackedScene" uid="uid://dl6h1djc27ddl" path="res://src/map/dungeon/floors/Floor00.tscn" id="3_s7lwc"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dmiqwmivkjgmq" path="res://src/map/dungeon/floors/Floor02.tscn" id="4_0qcd2"]
|
[ext_resource type="PackedScene" uid="uid://dmiqwmivkjgmq" path="res://src/map/dungeon/floors/Floor02.tscn" id="4_0qcd2"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bc1sp6xwe0j65" path="res://src/map/dungeon/floors/Floor01.tscn" id="4_1ny7u"]
|
[ext_resource type="PackedScene" uid="uid://bc1sp6xwe0j65" path="res://src/map/dungeon/floors/Floor01.tscn" id="4_1ny7u"]
|
||||||
|
|
||||||
[node name="Map" type="Node3D"]
|
[node name="Map" type="Node3D"]
|
||||||
script = ExtResource("1_bw70o")
|
script = ExtResource("1_bw70o")
|
||||||
_floors = Array[PackedScene]([ExtResource("3_s7lwc"), ExtResource("4_1ny7u"), ExtResource("4_0qcd2")])
|
_floors = Array[PackedScene]([ExtResource("2_s7lwc"), ExtResource("3_s7lwc"), ExtResource("4_1ny7u"), ExtResource("4_0qcd2")])
|
||||||
|
|
||||||
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
using Chickensoft.Introspection;
|
using Chickensoft.Introspection;
|
||||||
using Godot;
|
using Godot;
|
||||||
using System.Collections.Immutable;
|
using System.Collections.Immutable;
|
||||||
|
using Zennysoft.Ma.Adapter;
|
||||||
|
|
||||||
namespace Zennysoft.Game.Ma;
|
namespace Zennysoft.Game.Ma;
|
||||||
[Meta(typeof(IAutoNode))]
|
[Meta(typeof(IAutoNode))]
|
||||||
@@ -9,9 +10,11 @@ public partial class Overworld : Node3D, IDungeonFloor
|
|||||||
{
|
{
|
||||||
public override void _Notification(int what) => this.Notify(what);
|
public override void _Notification(int what) => this.Notify(what);
|
||||||
|
|
||||||
|
[Dependency] protected IGame Game => this.DependOn<IGame>();
|
||||||
|
|
||||||
[Node] public Marker3D PlayerSpawnPoint { get; set; } = default!;
|
[Node] public Marker3D PlayerSpawnPoint { get; set; } = default!;
|
||||||
|
|
||||||
[Node] public Marker3D ExitSpawnPoint { get; set; } = default!;
|
[Node] private Area3D Exit { get; set; } = default!;
|
||||||
|
|
||||||
public ImmutableList<IDungeonRoom> Rooms => [];
|
public ImmutableList<IDungeonRoom> Rooms => [];
|
||||||
|
|
||||||
@@ -20,16 +23,20 @@ public partial class Overworld : Node3D, IDungeonFloor
|
|||||||
public void InitializeDungeon()
|
public void InitializeDungeon()
|
||||||
{
|
{
|
||||||
Show();
|
Show();
|
||||||
|
Exit.AreaEntered += Exit_AreaEntered;
|
||||||
FloorIsLoaded = true;
|
FloorIsLoaded = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Exit_AreaEntered(Area3D area)
|
||||||
|
{
|
||||||
|
if (area.GetOwner() is IPlayer)
|
||||||
|
ExitReached();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ExitReached() => Game.FloorExitReached();
|
||||||
|
|
||||||
public Transform3D GetPlayerSpawnPoint()
|
public Transform3D GetPlayerSpawnPoint()
|
||||||
{
|
{
|
||||||
return PlayerSpawnPoint.GlobalTransform;
|
return PlayerSpawnPoint.GlobalTransform;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Vector3 GetTeleportSpawnPoint()
|
|
||||||
{
|
|
||||||
return ExitSpawnPoint.GlobalPosition;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://bont0nuph50qn" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_5r4b2vhc34xa1.png" id="15_k21dx"]
|
[ext_resource type="Texture2D" uid="uid://bont0nuph50qn" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_5r4b2vhc34xa1.png" id="15_k21dx"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ne8b5ixuw7wy" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png" id="16_84ul5"]
|
[ext_resource type="Texture2D" uid="uid://ne8b5ixuw7wy" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_hand-tiile.png" id="16_84ul5"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dfidrnk2qw3pf" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_CEILING_1.jpg" id="17_8kv76"]
|
[ext_resource type="Texture2D" uid="uid://dfidrnk2qw3pf" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_CEILING_1.jpg" id="17_8kv76"]
|
||||||
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/water.gdshader" id="18_8816c"]
|
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/Models/water.gdshader" id="18_8816c"]
|
||||||
[ext_resource type="Texture2D" uid="uid://1knt4qif78c1" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUMN.jpg" id="18_v5tkv"]
|
[ext_resource type="Texture2D" uid="uid://1knt4qif78c1" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUMN.jpg" id="18_v5tkv"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bn5lx2dal2x23" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_others_0020_color_1k.jpg" id="19_3akwg"]
|
[ext_resource type="Texture2D" uid="uid://bn5lx2dal2x23" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_others_0020_color_1k.jpg" id="19_3akwg"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c5c3i2b10oslb" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUMN_13.jpg" id="20_ae12c"]
|
[ext_resource type="Texture2D" uid="uid://c5c3i2b10oslb" path="res://src/map/dungeon/models/Set A/09. Column Room/COLUMN_ROOM_VER3_COLUMN_13.jpg" id="20_ae12c"]
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://dd4hrbee7mvf" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_CHAIN_TEX_16.png" id="12_litgw"]
|
[ext_resource type="Texture2D" uid="uid://dd4hrbee7mvf" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_CHAIN_TEX_16.png" id="12_litgw"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cbdgpe3y7wk40" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SD137.jpg" id="13_t7brn"]
|
[ext_resource type="Texture2D" uid="uid://cbdgpe3y7wk40" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_SD137.jpg" id="13_t7brn"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bmbvjyqrv1pfl" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_Stone4.png" id="14_gtr3o"]
|
[ext_resource type="Texture2D" uid="uid://bmbvjyqrv1pfl" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_Stone4.png" id="14_gtr3o"]
|
||||||
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/water.gdshader" id="15_na4gl"]
|
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/Models/water.gdshader" id="15_na4gl"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ddxpjgvw2a70i" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png" id="15_o7x30"]
|
[ext_resource type="Texture2D" uid="uid://ddxpjgvw2a70i" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_flower.png" id="15_o7x30"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bt7uu1n2fjl35" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR1.jpg" id="16_v7iwe"]
|
[ext_resource type="Texture2D" uid="uid://bt7uu1n2fjl35" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_FLOOR1.jpg" id="16_v7iwe"]
|
||||||
[ext_resource type="Texture2D" uid="uid://oaadtqvv1gj1" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_STONE_PANEL_1png_11.png" id="17_4pi80"]
|
[ext_resource type="Texture2D" uid="uid://oaadtqvv1gj1" path="res://src/map/dungeon/models/Set A/13. Water Room/WATER_ROOM_VER2_STONE_PANEL_1png_11.png" id="17_4pi80"]
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://c0h7v8ccit1gc" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_railing-2_billboard.png" id="5_4rhx7"]
|
[ext_resource type="Texture2D" uid="uid://c0h7v8ccit1gc" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_railing-2_billboard.png" id="5_4rhx7"]
|
||||||
[ext_resource type="Texture2D" uid="uid://udktcfebrpd7" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_COLUMN_WHITE.png" id="6_7fo8x"]
|
[ext_resource type="Texture2D" uid="uid://udktcfebrpd7" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_COLUMN_WHITE.png" id="6_7fo8x"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bmbur7125f6n5" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_others_0020_color_1k.jpg" id="7_loine"]
|
[ext_resource type="Texture2D" uid="uid://bmbur7125f6n5" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_others_0020_color_1k.jpg" id="7_loine"]
|
||||||
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/water.gdshader" id="8_4rhx7"]
|
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/Models/water.gdshader" id="8_4rhx7"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bdbstgdvkux44" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STONE.png" id="8_ipevu"]
|
[ext_resource type="Texture2D" uid="uid://bdbstgdvkux44" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_AREA_2_MAIN_STONE.png" id="8_ipevu"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bndhhds24kogn" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_SD137.jpg" id="9_7fo8x"]
|
[ext_resource type="Texture2D" uid="uid://bndhhds24kogn" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_SD137.jpg" id="9_7fo8x"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cepnb6nf68hpa" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_big_tile.png" id="9_elumq"]
|
[ext_resource type="Texture2D" uid="uid://cepnb6nf68hpa" path="res://src/map/dungeon/models/Set B/22. Pit Room B/22_A2_PIT_ROOM_B_area_2_big_tile.png" id="9_elumq"]
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://b4uja1v1usj12" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_inner_rock2.png" id="11_ufrrb"]
|
[ext_resource type="Texture2D" uid="uid://b4uja1v1usj12" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_inner_rock2.png" id="11_ufrrb"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cgmbbeb3fqpy4" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_CHAIN_TEX2.png" id="12_7pxu2"]
|
[ext_resource type="Texture2D" uid="uid://cgmbbeb3fqpy4" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_CHAIN_TEX2.png" id="12_7pxu2"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bndhhds24kogn" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_SD137.jpg" id="13_0o1jq"]
|
[ext_resource type="Texture2D" uid="uid://bndhhds24kogn" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_SD137.jpg" id="13_0o1jq"]
|
||||||
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/water.gdshader" id="14_h7qp4"]
|
[ext_resource type="Shader" uid="uid://blrcjqdo7emhs" path="res://src/map/overworld/Models/water.gdshader" id="14_h7qp4"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bkco21hp0xbob" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_COLUMN_WHITE.png" id="14_v56an"]
|
[ext_resource type="Texture2D" uid="uid://bkco21hp0xbob" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_COLUMN_WHITE.png" id="14_v56an"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cw6v1ibhv3i83" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_railing-2_billboard.png" id="15_k70ho"]
|
[ext_resource type="Texture2D" uid="uid://cw6v1ibhv3i83" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_railing-2_billboard.png" id="15_k70ho"]
|
||||||
[ext_resource type="Texture2D" uid="uid://d0w0n6hcdwj6m" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_swirled_column _AREA222.png" id="16_uquwp"]
|
[ext_resource type="Texture2D" uid="uid://d0w0n6hcdwj6m" path="res://src/map/dungeon/models/Set B/27. Water Room B/27_A2_WATER_ROOM_B_swirled_column _AREA222.png" id="16_uquwp"]
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,37 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://c5bfwkkxvtpie"
|
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_COLUM2N.png-181f9a4407625d231518b3b524f1f9d3.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
generator_parameters={
|
|
||||||
"md5": "aa07ab7f59f9440053a56b318be20581"
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_COLUM2N.png"
|
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_COLUM2N.png-181f9a4407625d231518b3b524f1f9d3.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: 550 KiB |
@@ -1,37 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://byo85is6ac4dc"
|
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_Rock-Scoured 3.png-711c017980d935e9d8edf01594cdf90e.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
generator_parameters={
|
|
||||||
"md5": "237210ad66d79dea925fbf4765f98bbe"
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_Rock-Scoured 3.png"
|
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_Rock-Scoured 3.png-711c017980d935e9d8edf01594cdf90e.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: 491 KiB |
@@ -1,37 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://dhexvhqabwj7i"
|
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_Stucco-Aged 3.png-8aaa73bd4154fa89f5be14e6a1d0a899.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
generator_parameters={
|
|
||||||
"md5": "fef563820fd3e9a9c120cb08ef3e11d2"
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_Stucco-Aged 3.png"
|
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_Stucco-Aged 3.png-8aaa73bd4154fa89f5be14e6a1d0a899.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: 56 KiB |
@@ -1,37 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://blod0dkjr1da2"
|
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_Worked-Stone-Outside.png-4fdb31ed74ae1175abfef8cf1baa7a5a.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
generator_parameters={
|
|
||||||
"md5": "838848b5a6bc07fb0e75a5473f779004"
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_Worked-Stone-Outside.png"
|
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_Worked-Stone-Outside.png-4fdb31ed74ae1175abfef8cf1baa7a5a.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: 162 KiB |
@@ -1,37 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://ba68a8cyk10rp"
|
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_carved_stone_3.png-52e74990c29e7d42ec894035ddb6d58e.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
generator_parameters={
|
|
||||||
"md5": "f2f60983d2d219964072f579238faa0a"
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_carved_stone_3.png"
|
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_carved_stone_3.png-52e74990c29e7d42ec894035ddb6d58e.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: 52 KiB |
@@ -1,37 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://crjdf6o8groo4"
|
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_metal_0073_color_1k.jpg-f0074cfef959363f7a4449472997f926.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
generator_parameters={
|
|
||||||
"md5": "f84783b7f1737f7034df2c77903f53a1"
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_metal_0073_color_1k.jpg"
|
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_metal_0073_color_1k.jpg-f0074cfef959363f7a4449472997f926.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: 89 KiB |
@@ -1,37 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://dac21dh065a6s"
|
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_stone_weirdlytiled.png-a8f1b95c1daf05cb43e6b0a3ec2d65db.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
generator_parameters={
|
|
||||||
"md5": "480e773e3837ea0a55eaf48d1d17c239"
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_stone_weirdlytiled.png"
|
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_stone_weirdlytiled.png-a8f1b95c1daf05cb43e6b0a3ec2d65db.ctex"]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/high_quality=false
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_compression=1
|
|
||||||
compress/normal_map=0
|
|
||||||
compress/channel_pack=0
|
|
||||||
mipmaps/generate=true
|
|
||||||
mipmaps/limit=-1
|
|
||||||
roughness/mode=0
|
|
||||||
roughness/src_normal=""
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
process/hdr_as_srgb=false
|
|
||||||
process/hdr_clamp_exposure=false
|
|
||||||
process/size_limit=0
|
|
||||||
detect_3d/compress_to=0
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://cdra1xexngww4"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER.glb-8735040790db23170b02f8ade74c6d10.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER.glb"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER.glb-8735040790db23170b02f8ade74c6d10.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=false
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
_subresources={}
|
||||||
|
gltf/naming_version=1
|
||||||
|
gltf/embedded_image_handling=1
|
||||||
|
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.4 MiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://4rf28lwgq46l"
|
uid="uid://cb4pyjgv8p0bt"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_33.png-5bd4a477c40763ed27bb11ab8c9c620c.ctex"
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_33.png-054a32f64b4bf3fd29b08121b946e596.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_33.png"
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_33.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_33.png-5bd4a477c40763ed27bb11ab8c9c620c.ctex"]
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_33.png-054a32f64b4bf3fd29b08121b946e596.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 820 KiB After Width: | Height: | Size: 820 KiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cufesa5wd6877"
|
uid="uid://w33fr6exryiy"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_37.png-1c8a5a9320df06f752043e742048ade8.ctex"
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_37.png-7a4ba4042820c22b731f1084d7614b53.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_37.png"
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_37.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_37.png-1c8a5a9320df06f752043e742048ade8.ctex"]
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_37.png-7a4ba4042820c22b731f1084d7614b53.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 329 KiB After Width: | Height: | Size: 329 KiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://dj2g5a8ocsp82"
|
uid="uid://cla7f1bobkvls"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_39.png-45483b2666c11d17028589260f9ea4bd.ctex"
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_39.png-74413ae8faecce93b7ccd8090d49004a.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_39.png"
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_39.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_39.png-45483b2666c11d17028589260f9ea4bd.ctex"]
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_39.png-74413ae8faecce93b7ccd8090d49004a.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b7qnqiabfni5m"
|
uid="uid://ds1xkflh1wvsn"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_45.png-a012982457a57ab20b7b29fc06723719.ctex"
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_45.png-f5b61c28df65672eb9271899cf69aba5.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_45.png"
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_45.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_45.png-a012982457a57ab20b7b29fc06723719.ctex"]
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_45.png-f5b61c28df65672eb9271899cf69aba5.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 765 KiB After Width: | Height: | Size: 765 KiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bgob4cvyb63p1"
|
uid="uid://nxu6dwxxyxkw"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_46.png-d48eaaf67d0c6a69515dccb273a512fb.ctex"
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_46.png-f6d59c494beb599d7b117f58937f5222.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_46.png"
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_46.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_46.png-d48eaaf67d0c6a69515dccb273a512fb.ctex"]
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_46.png-f6d59c494beb599d7b117f58937f5222.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 451 KiB After Width: | Height: | Size: 451 KiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://n6gpdt74bo5n"
|
uid="uid://co6h8vyi11sl2"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_63.png-984dca6dfabe1d64cf6d3b41db91972e.ctex"
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_63.png-1ba129e16bdef6905cd911ec6b102ab0.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_63.png"
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_63.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_63.png-984dca6dfabe1d64cf6d3b41db91972e.ctex"]
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_63.png-1ba129e16bdef6905cd911ec6b102ab0.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cnimsvbxx8bt1"
|
uid="uid://dv10yaqvp3mub"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_71.png-38e0e9ac2320c5b45087a36e405ce53f.ctex"
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_INNER_71.png-d65ecaebd34f6f8a96f017697e8e22df.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_71.png"
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_INNER_71.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_71.png-38e0e9ac2320c5b45087a36e405ce53f.ctex"]
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_INNER_71.png-d65ecaebd34f6f8a96f017697e8e22df.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://dmigx7fdlp5td"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER.glb-24b1adcbeee5b86c9e7f42bf8a7b596b.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER.glb"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER.glb-24b1adcbeee5b86c9e7f42bf8a7b596b.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=false
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
_subresources={}
|
||||||
|
gltf/naming_version=1
|
||||||
|
gltf/embedded_image_handling=1
|
||||||
|
After Width: | Height: | Size: 3.4 MiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dicwnhepupj5a"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_33.png-1a74decf5adba654c1710f1ab7a85775.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "baaffec5384812a09086c7148060d202"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_33.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_33.png-1a74decf5adba654c1710f1ab7a85775.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: 820 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bq8stlhr68aoa"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_37.png-85c9200d8a566d788e8b05a78f5a65c6.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "fed75d8e167d3c6998056f72bcc5b96d"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_37.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_37.png-85c9200d8a566d788e8b05a78f5a65c6.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: 329 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cxbhw65ev7ajr"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_39.png-d911bfe460708f98235570e757a0c951.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "370bbd3ce85a4019000dcc3f266ca215"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_39.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_39.png-d911bfe460708f98235570e757a0c951.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: 1.2 MiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cqdgiqejuwy1v"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_45.png-9d05b922fc4a525548a049faa1e037e0.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "446ce9cd7b01aa9dd347b3215b98700d"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_45.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_45.png-9d05b922fc4a525548a049faa1e037e0.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: 765 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bj11280ljrj2b"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_46.png-e16b352793b486f66206c01a6085b564.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "ef42747fe6c72014c73ba6d89978f80c"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_46.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_46.png-e16b352793b486f66206c01a6085b564.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: 451 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://n6najxyyui7d"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_63.png-0fda9c9bc45d0f3943ce56c129709a3a.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "8e8abf413eacccbe6b0a4d1a1fcb6fc1"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_63.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_63.png-0fda9c9bc45d0f3943ce56c129709a3a.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: 1.3 MiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://o0an407sgqg"
|
||||||
|
path="res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_71.png-5db86bcbc34e5e71384a91acb6ff9bbc.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "75267561eaf51aa57c6fc4fdeb9cf40b"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_CLOUD_RINGS_OUTTER_71.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_CLOUD_RINGS_OUTTER_71.png-5db86bcbc34e5e71384a91acb6ff9bbc.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
|
||||||
@@ -3,13 +3,13 @@
|
|||||||
importer="scene"
|
importer="scene"
|
||||||
importer_version=1
|
importer_version=1
|
||||||
type="PackedScene"
|
type="PackedScene"
|
||||||
uid="uid://c5gjo1sjatnqe"
|
uid="uid://bwmifp7f34ch8"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0.2.glb-e5906ce5bb68ee0eccc42c9b4683f55a.scn"
|
path="res://.godot/imported/Overworld_colision.glb-0277cb99f60a14f702da75d6e9feaad8.scn"
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0.2.glb"
|
source_file="res://src/map/overworld/Models/Overworld_colision.glb"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0.2.glb-e5906ce5bb68ee0eccc42c9b4683f55a.scn"]
|
dest_files=["res://.godot/imported/Overworld_colision.glb-0277cb99f60a14f702da75d6e9feaad8.scn"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://dmr1437uxjqlp"
|
||||||
|
path="res://.godot/imported/Overworld_makeshift_skybox.glb-f2bc870ecfd5b6acd4f23eb627aa1541.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_makeshift_skybox.glb"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_makeshift_skybox.glb-f2bc870ecfd5b6acd4f23eb627aa1541.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=false
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
_subresources={}
|
||||||
|
gltf/naming_version=1
|
||||||
|
gltf/embedded_image_handling=1
|
||||||
|
Before Width: | Height: | Size: 789 KiB After Width: | Height: | Size: 789 KiB |
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://p4m0slh58kac"
|
uid="uid://bs8a3hyubf521"
|
||||||
path="res://.godot/imported/01_Overworld_ver.0_Cloudscape 3.png-2c99c32e6e78e05ef9b8f634a86565b8.ctex"
|
path="res://.godot/imported/Overworld_makeshift_skybox_Cloudscape 3.png-1fc2ca7e280f11c2db72c49c55de6b4f.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,8 @@ generator_parameters={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/map/overworld/Models/01_Overworld_ver.0_Cloudscape 3.png"
|
source_file="res://src/map/overworld/Models/Overworld_makeshift_skybox_Cloudscape 3.png"
|
||||||
dest_files=["res://.godot/imported/01_Overworld_ver.0_Cloudscape 3.png-2c99c32e6e78e05ef9b8f634a86565b8.ctex"]
|
dest_files=["res://.godot/imported/Overworld_makeshift_skybox_Cloudscape 3.png-1fc2ca7e280f11c2db72c49c55de6b4f.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://d1dciom8kx55v"
|
||||||
|
path="res://.godot/imported/Overworld_ocean_plane.glb-50a1400c00b0ea9b051c2f7ab6c33193.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_ocean_plane.glb"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_ocean_plane.glb-50a1400c00b0ea9b051c2f7ab6c33193.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=false
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
_subresources={}
|
||||||
|
gltf/naming_version=1
|
||||||
|
gltf/embedded_image_handling=1
|
||||||
|
After Width: | Height: | Size: 131 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bjauc8sa6s6ex"
|
||||||
|
path="res://.godot/imported/Overworld_ocean_plane_OCEAN.png-642bf739618c518c0caeb8945c1d4667.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "3b1d6ad026d23edca827d8b6ad233701"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_ocean_plane_OCEAN.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_ocean_plane_OCEAN.png-642bf739618c518c0caeb8945c1d4667.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=true
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=0
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://31h4xrnjh7t7"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1.glb-9e719c5c40e884430eb35228b03d2763.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1.glb"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1.glb-9e719c5c40e884430eb35228b03d2763.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=false
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
_subresources={}
|
||||||
|
gltf/naming_version=1
|
||||||
|
gltf/embedded_image_handling=1
|
||||||
|
After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cchqagfhsko0r"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_A1_eyeblock.png-64b8473c3975b67f2ad4a36ea3d4d2b6.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "0d781f27867c0e5fd3c3f6ae3ba52ce3"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_A1_eyeblock.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_A1_eyeblock.png-64b8473c3975b67f2ad4a36ea3d4d2b6.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://c3n2f4ii2iuds"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_ACCACIA 2.png-2cedecd276191a3c9c1b71b28ca880d0.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "7b12fcf0a3894a0bbd98110c9d831da7"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_ACCACIA 2.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_ACCACIA 2.png-2cedecd276191a3c9c1b71b28ca880d0.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: 8.0 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://3dkqxucnyanw"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_ACCACIABARK.png-c20afb46f36c2ebfc90cc13b62a9e840.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "3fd7c531527b4cc82c412a6c50456e8c"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_ACCACIABARK.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_ACCACIABARK.png-c20afb46f36c2ebfc90cc13b62a9e840.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: 4.9 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://wqbflec631rm"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_BANYAN_LEAVES.png-d1eda351d29ed127c568fda0f504b8dc.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "4376148a62fed9afa972d089deb47b5c"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_BANYAN_LEAVES.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_BANYAN_LEAVES.png-d1eda351d29ed127c568fda0f504b8dc.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: 6.1 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://ck2milaawr3ef"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_BANYAN_LEAVES2.png-9ccbdd43075cb8c2e62d5ca229e53fbf.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "cab422197315b86a0e85488985850cb8"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_BANYAN_LEAVES2.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_BANYAN_LEAVES2.png-9ccbdd43075cb8c2e62d5ca229e53fbf.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: 5.7 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c5jloiaiy7iug"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_BANYAN_LEAVES_3.png-d5631dab55ea6aa2ca1fbf3cfe0cd680.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "325d1a5f3057fa064e626db4dc822c83"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_BANYAN_LEAVES_3.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_BANYAN_LEAVES_3.png-d5631dab55ea6aa2ca1fbf3cfe0cd680.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: 16 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cq2rbxc01d7fo"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_COLUMN PART.png-2e6baec73addebc6c5f39264e448d06d.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "4fce5ab61ad813024a170ceab2192fae"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_COLUMN PART.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_COLUMN PART.png-2e6baec73addebc6c5f39264e448d06d.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: 21 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cukfxcceq4oy0"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_COLUMN.jpg-966e94dd37ff8efea278362903a98f3f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "f898f2d5d45561b486ec94d473fbefce"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_COLUMN.jpg"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_COLUMN.jpg-966e94dd37ff8efea278362903a98f3f.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: 66 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://peyo4s48h7tn"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_INTERIOR_STONE_2.png-0ed4bd2f6f1c00c5b761cce6efc8f152.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "5a206a1f8621251ea78a01eec1488f5a"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_INTERIOR_STONE_2.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_INTERIOR_STONE_2.png-0ed4bd2f6f1c00c5b761cce6efc8f152.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: 33 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://pn66d2dad2"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_MOSAIC.png-ed5b2eda89d521cefe65a912eaa0bff9.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "eabe61d27cef86cb8310fdcb3049e2b0"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_MOSAIC.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_MOSAIC.png-ed5b2eda89d521cefe65a912eaa0bff9.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: 131 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bam1n3flq8be5"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_OCEAN.png-3e20d098ba4f155613441de6bc2822ec.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "3b1d6ad026d23edca827d8b6ad233701"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_OCEAN.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_OCEAN.png-3e20d098ba4f155613441de6bc2822ec.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: 12 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://64x0hdt3ijbm"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_OW_DARKEST_METAL.png-d914e2150fb3a0cdebe157cd0decd78f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "4da9381ca1fc26de61546f73fb816d84"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_OW_DARKEST_METAL.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_OW_DARKEST_METAL.png-d914e2150fb3a0cdebe157cd0decd78f.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: 391 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://d310ng533dj0k"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_OW_METAL.jpg-b843f4eae8bbeae2637a39a4758ddb35.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "574fdd8a849075fb374effd327bdc641"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_OW_METAL.jpg"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_OW_METAL.jpg-b843f4eae8bbeae2637a39a4758ddb35.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: 71 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://ck010342dhmrw"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_OW_METALISH_1.jpg-e284d53c6d3f119ede764fc1d4dc669f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "89016c3f267e725c45c21d9805d45267"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_OW_METALISH_1.jpg"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_OW_METALISH_1.jpg-e284d53c6d3f119ede764fc1d4dc669f.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: 11 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bwy2812b4iexi"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_OW_METAL_COLUM2N.png-e31abe8c559ef9f04cd67b8609b231fe.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "51550e5497afa15ac6b0645c1657548d"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_OW_METAL_COLUM2N.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_OW_METAL_COLUM2N.png-e31abe8c559ef9f04cd67b8609b231fe.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: 318 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://d4equ2balihp"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_OW_STUCCO.png-9fe7466f3d68d96b2a5450fba99f6500.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "185f473ebdfcd11a9890c296b1caee72"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_OW_STUCCO.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_OW_STUCCO.png-9fe7466f3d68d96b2a5450fba99f6500.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: 52 KiB |
@@ -0,0 +1,37 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cgx3b275abnwg"
|
||||||
|
path="res://.godot/imported/Overworld_optimized_Pass 1_OW_Worked-Stone-Outside.png-c789e742e8ac1d28412d3ee1bbb93753.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
generator_parameters={
|
||||||
|
"md5": "8cb2c164f2fb83c32b0f1c5e5269359d"
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://src/map/overworld/Models/Overworld_optimized_Pass 1_OW_Worked-Stone-Outside.png"
|
||||||
|
dest_files=["res://.godot/imported/Overworld_optimized_Pass 1_OW_Worked-Stone-Outside.png-c789e742e8ac1d28412d3ee1bbb93753.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: 7.2 KiB |