Compare commits

..

14 Commits

174 changed files with 13692 additions and 557 deletions

View File

@ -65,7 +65,9 @@
+ [Ghostwriter]() by kde + [Ghostwriter]() by kde
+ [Queen of Fire](https://www.peppercarrot.com/en/viewer/artworks__2023-05-18_Queen-of-Fire_by-David-Revoy.html), [Magic system of hereva](https://www.peppercarrot.com/en/viewer/artworks__2015-06-08_magic-system-of-hereva_by-David-Revoy.html), [Character design for a hippiah witch](https://www.peppercarrot.com/en/viewer/artworks__2020-01-03_character-design-for-a-hippiah-witch_by-David-Revoy.html), [Pepper and Carrot Book 4](https://www.drivethrucomics.com/product/385896/PepperCarrot--Book-4-Everything-Changes?src=shop) and [Saffron steampunk clothes](https://www.peppercarrot.com/en/viewer/artworks__2020-05-09_Saffron-steampunk-clothes_by-David-Revoy.html) by [David Revoy](https://www.peppercarrot.com/en/about/index.html), [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/deed.en) + [Queen of Fire](https://www.peppercarrot.com/en/viewer/artworks__2023-05-18_Queen-of-Fire_by-David-Revoy.html), [Magic system of hereva](https://www.peppercarrot.com/en/viewer/artworks__2015-06-08_magic-system-of-hereva_by-David-Revoy.html), [Character design for a hippiah witch](https://www.peppercarrot.com/en/viewer/artworks__2020-01-03_character-design-for-a-hippiah-witch_by-David-Revoy.html), [Pepper and Carrot Book 4](https://www.drivethrucomics.com/product/385896/PepperCarrot--Book-4-Everything-Changes?src=shop) and [Saffron steampunk clothes](https://www.peppercarrot.com/en/viewer/artworks__2020-05-09_Saffron-steampunk-clothes_by-David-Revoy.html) by [David Revoy](https://www.peppercarrot.com/en/about/index.html), [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/deed.en)
+ [Procesa, the sea witch](https://katharsisdrill.art/cc_images/Procesa_the_sea_witch.png), [Arkariater](https://katharsisdrill.art/cc_images/Arkariater.png), [Cryo hamber](https://katharsisdrill.art/cc_images/Cryo_Chamber.png) and [Caladrabn](https://katharsisdrill.art/cc_images/Caladrabn.png), by [Katharsisdrill](https://katharsisdrill.art), [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/deed.en) (CW: Nudity, Body Horror) + [Procesa, the sea witch](https://katharsisdrill.art/cc_images/Procesa_the_sea_witch.png), [Arkariater](https://katharsisdrill.art/cc_images/Arkariater.png), [Cryo hamber](https://katharsisdrill.art/cc_images/Cryo_Chamber.png) and [Caladrabn](https://katharsisdrill.art/cc_images/Caladrabn.png), by [Katharsisdrill](https://katharsisdrill.art), [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/deed.en) (CW: Nudity, Body Horror)
+ [Flow © Dream Well Studio](https://www.blender.org/download/releases/4-4/) by [Sacrebleu Productions, Take Five](https://flow.movie/), Splash Artwork Image licensed under [CC-BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.en) + [Flow © Dream Well Studio](https://www.blender.org/download/releases/4-4/) by [Sacrebleu Productions, Take Five](https://flow.movie/), Splash Artwork Image licensed under [CC-BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.en)
+ [Titans of Growth](https://inkscape.org/~rafael_clemos/%E2%98%85titans-of-growth), by [Rafael Cundari](https://inkscape.org/~rafael_clemos/), [CC-BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
+ [Vector Driving](https://inkscape.org/~atareumco/%E2%98%85vector-driving), by [atareumco](https://inkscape.org/~atareumco/), [CC-BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
## Pen and Paper Rulebooks ## Pen and Paper Rulebooks
- [Dungeons and Dragons](https://www.dndbeyond.com/) by Wizards of the Cost, Creative commons, [CC-BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.en) - [Dungeons and Dragons](https://www.dndbeyond.com/) by Wizards of the Cost, Creative commons, [CC-BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.en)

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

BIN
design/volunteer room/dice/phone_screen.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
design/volunteer room/dice/smartphine.blend (Stored with Git LFS) Normal file

Binary file not shown.

BIN
design/volunteer room/outside/outside-voluntary.blend (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

View File

@ -54,7 +54,7 @@ func _ready() -> void:
func set_line(line: StringName): func set_line(line: StringName):
subway.set_line(line) subway.set_line(line)
## One arrival and departure ## One arrival and departure
func cycle() -> void: func cycle() -> void:
await arrive() await arrive()

View File

@ -102,3 +102,7 @@ func _unparent_all_stations_except(except : Node3D):
current = station current = station
continue continue
remove_child(station) remove_child(station)
func unload() -> void:
for station in stations:
station.queue_free()

View File

@ -5,4 +5,4 @@ class_name Station
@export var train_labels : Dictionary[StringName,String] = {} @export var train_labels : Dictionary[StringName,String] = {}
func get_label(line: StringName, next_stop: Station) -> String: func get_label(line: StringName, next_stop: Station) -> String:
return train_labels.get(line+next_stop.name, line+next_stop.name) return train_labels.get(line+next_stop.name, line+next_stop.name)

View File

@ -22,3 +22,6 @@ func pull_save_state(save: SaveGame) -> void:
# Call parent to restore player position # Call parent to restore player position
super.pull_save_state(save) super.pull_save_state(save)
func unload() -> void:
$Logic/Fahrplan.unload()

View File

@ -19,4 +19,3 @@ func set_line(line : StringName):
$TrainModel/traun_hull.material_overlay = materials[line] $TrainModel/traun_hull.material_overlay = materials[line]
$TrainModel/LineLabelBack.text = line.to_upper() $TrainModel/LineLabelBack.text = line.to_upper()
$TrainModel/LineLabelFront.text = line.to_upper() $TrainModel/LineLabelFront.text = line.to_upper()

View File

@ -56,6 +56,30 @@ shader_parameter/density = 0.05
[sub_resource type="PlaneMesh" id="PlaneMesh_yyrp7"] [sub_resource type="PlaneMesh" id="PlaneMesh_yyrp7"]
[sub_resource type="BoxShape3D" id="BoxShape3D_yyrp7"]
size = Vector3(8, 2.5, 0.5)
[sub_resource type="BoxShape3D" id="BoxShape3D_jh12p"]
size = Vector3(4, 2.5, 0.4)
[sub_resource type="BoxShape3D" id="BoxShape3D_f7u4i"]
size = Vector3(4.392578, 2.5, 0.4)
[sub_resource type="BoxShape3D" id="BoxShape3D_8c00m"]
size = Vector3(4.392578, 2.5, 0.4)
[sub_resource type="BoxShape3D" id="BoxShape3D_6sjee"]
size = Vector3(4.393, 2.5, 0.6)
[sub_resource type="BoxShape3D" id="BoxShape3D_2mi8a"]
size = Vector3(0.4, 2.5, 0.5)
[sub_resource type="BoxShape3D" id="BoxShape3D_sw3d8"]
size = Vector3(2.393, 1.0219727, 1.1)
[sub_resource type="BoxShape3D" id="BoxShape3D_nwu5x"]
size = Vector3(4.325035, 0.5001221, 29.45169)
[node name="meta_station" unique_id=862984273 instance=ExtResource("1_yekr5")] [node name="meta_station" unique_id=862984273 instance=ExtResource("1_yekr5")]
[node name="water_001" parent="." index="0" unique_id=111926402] [node name="water_001" parent="." index="0" unique_id=111926402]
@ -348,3 +372,102 @@ font = ExtResource("5_e0ljd")
outline_size = 2 outline_size = 2
horizontal_alignment = 0 horizontal_alignment = 0
vertical_alignment = 0 vertical_alignment = 0
[node name="Collision" type="StaticBody3D" parent="." index="56" unique_id=1055434316]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.015596004, -0.007891655, 0.018885009)
[node name="CollisionShape3D3" type="CollisionShape3D" parent="Collision" index="0" unique_id=905570126]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.143, 1, -66.5)
shape = SubResource("BoxShape3D_yyrp7")
[node name="CollisionShape3D4" type="CollisionShape3D" parent="Collision" index="1" unique_id=171734135]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.143, 1, 0.25)
shape = SubResource("BoxShape3D_yyrp7")
[node name="CollisionShape3D5" type="CollisionShape3D" parent="Collision" index="2" unique_id=1336395804]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 1.8523458, 1, -1.1576476)
shape = SubResource("BoxShape3D_jh12p")
[node name="CollisionShape3D7" type="CollisionShape3D" parent="Collision" index="3" unique_id=459417206]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 1.567, 1.031, -2)
shape = SubResource("BoxShape3D_f7u4i")
[node name="CollisionShape3D8" type="CollisionShape3D" parent="Collision" index="4" unique_id=1713197009]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, -1.567, 1.031, -2)
shape = SubResource("BoxShape3D_8c00m")
[node name="CollisionShape3D9" type="CollisionShape3D" parent="Collision" index="5" unique_id=1762662266]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 0, 1.031, -2)
shape = SubResource("BoxShape3D_6sjee")
[node name="CollisionShape3D10" type="CollisionShape3D" parent="Collision" index="6" unique_id=301178296]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 2.5282154e-07, 1.031, -7.783883)
shape = SubResource("BoxShape3D_2mi8a")
[node name="CollisionShape3D11" type="CollisionShape3D" parent="Collision" index="7" unique_id=769617460]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -9.45743)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D12" type="CollisionShape3D" parent="Collision" index="8" unique_id=1739733979]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 2.5282154e-07, 1.031, -17.783882)
shape = SubResource("BoxShape3D_2mi8a")
[node name="CollisionShape3D13" type="CollisionShape3D" parent="Collision" index="9" unique_id=452385568]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -19.45743)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D14" type="CollisionShape3D" parent="Collision" index="10" unique_id=1034267510]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -16.102852)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D15" type="CollisionShape3D" parent="Collision" index="11" unique_id=1680690289]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 2.5282154e-07, 1.031, -27.783882)
shape = SubResource("BoxShape3D_2mi8a")
[node name="CollisionShape3D16" type="CollisionShape3D" parent="Collision" index="12" unique_id=1047818203]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -29.45743)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D17" type="CollisionShape3D" parent="Collision" index="13" unique_id=1702025022]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -26.102852)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D18" type="CollisionShape3D" parent="Collision" index="14" unique_id=258872744]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 2.5282154e-07, 1.031, -37.783882)
shape = SubResource("BoxShape3D_2mi8a")
[node name="CollisionShape3D19" type="CollisionShape3D" parent="Collision" index="15" unique_id=1156771712]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -39.457428)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D20" type="CollisionShape3D" parent="Collision" index="16" unique_id=508183040]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -36.10285)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D21" type="CollisionShape3D" parent="Collision" index="17" unique_id=1259391866]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 2.5282154e-07, 1.031, -47.783882)
shape = SubResource("BoxShape3D_2mi8a")
[node name="CollisionShape3D22" type="CollisionShape3D" parent="Collision" index="18" unique_id=1503501217]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -49.457428)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D23" type="CollisionShape3D" parent="Collision" index="19" unique_id=2073149697]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -46.10285)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D24" type="CollisionShape3D" parent="Collision" index="20" unique_id=1205879072]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 2.5282154e-07, 1.031, -57.783882)
shape = SubResource("BoxShape3D_2mi8a")
[node name="CollisionShape3D26" type="CollisionShape3D" parent="Collision" index="21" unique_id=735293042]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 3.259746e-07, 0.29198635, -56.10285)
shape = SubResource("BoxShape3D_sw3d8")
[node name="CollisionShape3D6" type="CollisionShape3D" parent="Collision" index="22" unique_id=597591053]
transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, -1.8618617, 1, -1.1576476)
shape = SubResource("BoxShape3D_jh12p")
[node name="train" type="CollisionShape3D" parent="Collision" index="23" unique_id=1987119272]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.0680046, -0.24993896, -32.189793)
shape = SubResource("BoxShape3D_nwu5x")

View File

@ -23,6 +23,8 @@
[ext_resource type="Script" uid="uid://mgertkn5ub0g" path="res://dev-util/hdr_sdr_switch.gd" id="17_ov8kk"] [ext_resource type="Script" uid="uid://mgertkn5ub0g" path="res://dev-util/hdr_sdr_switch.gd" id="17_ov8kk"]
[ext_resource type="PackedScene" uid="uid://df3ur5wll8vx7" path="res://base-environments/transition/subway_track.tscn" id="17_yfan7"] [ext_resource type="PackedScene" uid="uid://df3ur5wll8vx7" path="res://base-environments/transition/subway_track.tscn" id="17_yfan7"]
[sub_resource type="WorldBoundaryShape3D" id="WorldBoundaryShape3D_rkl48"]
[sub_resource type="ViewportTexture" id="ViewportTexture_rkl48"] [sub_resource type="ViewportTexture" id="ViewportTexture_rkl48"]
viewport_path = NodePath("Logic/Fahrplan/hirschfeld/SubwayMap3D/MapViewport") viewport_path = NodePath("Logic/Fahrplan/hirschfeld/SubwayMap3D/MapViewport")
@ -70,8 +72,6 @@ size = Vector3(0.15, 1.2, 1.7)
[sub_resource type="BoxMesh" id="BoxMesh_symoa"] [sub_resource type="BoxMesh" id="BoxMesh_symoa"]
size = Vector3(0.3, 1, 1.5) size = Vector3(0.3, 1, 1.5)
[sub_resource type="WorldBoundaryShape3D" id="WorldBoundaryShape3D_rkl48"]
[sub_resource type="BoxShape3D" id="BoxShape3D_yfan7"] [sub_resource type="BoxShape3D" id="BoxShape3D_yfan7"]
size = Vector3(8, 2.5, 0.5) size = Vector3(8, 2.5, 0.5)
@ -167,6 +167,12 @@ id = 2
[node name="Logic" type="Node3D" parent="." unique_id=1036462417 groups=["labels"]] [node name="Logic" type="Node3D" parent="." unique_id=1036462417 groups=["labels"]]
unique_name_in_owner = true unique_name_in_owner = true
[node name="Floor" type="StaticBody3D" parent="Logic" unique_id=837095759]
[node name="World Boundary (Floor)" type="CollisionShape3D" parent="Logic/Floor" unique_id=836708414]
shape = SubResource("WorldBoundaryShape3D_rkl48")
debug_color = Color(0.5019608, 0.003921569, 0.9607843, 1)
[node name="PlayerController" parent="Logic" unique_id=1470359340 instance=ExtResource("2_il5go")] [node name="PlayerController" parent="Logic" unique_id=1470359340 instance=ExtResource("2_il5go")]
unique_name_in_owner = true unique_name_in_owner = true
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.0218763, 6.1035156e-05, -5.6086483) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.0218763, 6.1035156e-05, -5.6086483)
@ -254,10 +260,6 @@ bus = &"sfx"
[node name="Collision" type="StaticBody3D" parent="Logic/Fahrplan/hirschfeld" unique_id=1981379044] [node name="Collision" type="StaticBody3D" parent="Logic/Fahrplan/hirschfeld" unique_id=1981379044]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.015596004, -0.007891655, 0.018885009) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.015596004, -0.007891655, 0.018885009)
[node name="World Boundary (Floor)" type="CollisionShape3D" parent="Logic/Fahrplan/hirschfeld/Collision" unique_id=836708414]
shape = SubResource("WorldBoundaryShape3D_rkl48")
debug_color = Color(0.5019608, 0.003921569, 0.9607843, 1)
[node name="CollisionShape3D3" type="CollisionShape3D" parent="Logic/Fahrplan/hirschfeld/Collision" unique_id=1454083655] [node name="CollisionShape3D3" type="CollisionShape3D" parent="Logic/Fahrplan/hirschfeld/Collision" unique_id=1454083655]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.143, 1, -66.5) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.143, 1, -66.5)
shape = SubResource("BoxShape3D_yfan7") shape = SubResource("BoxShape3D_yfan7")

View File

@ -0,0 +1,23 @@
[gd_scene format=3 uid="uid://d1rrpray86q17"]
[ext_resource type="PackedScene" uid="uid://d1sqf5cgd8sba" path="res://base-environments/youth_room/import/dice-models.glb" id="1_vh430"]
[node name="dice-models" unique_id=911256849 instance=ExtResource("1_vh430")]
[node name="d12" parent="." index="0" unique_id=65177081]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.038978957, 0.6987885, -2.4119375)
[node name="d6" parent="." index="1" unique_id=220306213]
transform = Transform3D(0, -1, 0, 1, 0, 0, 0, 0, 1, 2.2221472, 0.5278461, -2.6088107)
[node name="d4" parent="." index="2" unique_id=1166078388]
transform = Transform3D(0.69187284, 0, 0.7220194, 0, 1, 0, -0.7220194, 0, 0.69187284, 3.019659, 0.34691018, -0.26562953)
[node name="d20" parent="." index="3" unique_id=1519015411]
transform = Transform3D(0.7535016, -0.5529435, -0.3556526, 0.3512268, 0.79585314, -0.49321136, 0.5557653, 0.24672082, 0.79388523, -0.016941644, 0.81124437, -0.006403886)
[node name="d10" parent="." index="4" unique_id=673773739]
transform = Transform3D(-0.30351675, -9.893264e-07, -0.9528261, 9.893264e-07, -1, 7.231638e-07, -0.9528261, -7.231638e-07, 0.30351675, -1.8407929, 0.027106762, -1.7446356)
[node name="d100" parent="." index="5" unique_id=1792677124]
transform = Transform3D(0.8973767, 6.74069e-07, 0.44126534, -6.8304064e-07, 1, -1.3852043e-07, -0.44126534, -1.7709712e-07, 0.8973766, 1.4871418, 1.0925838, -0.7358486)

Binary file not shown.

View File

@ -0,0 +1,42 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://l3qqenak1y8l"
path="res://.godot/imported/outside-voluntary.glb-9e33f982ef1e0c830fa4e481e01561e0.scn"
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary.glb"
dest_files=["res://.godot/imported/outside-voluntary.glb-9e33f982ef1e0c830fa4e481e01561e0.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
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=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
gltf/naming_version=2
gltf/embedded_image_handling=1

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b1v8nf7lor4rv"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_baseColor.png-3165c4a39a634137ac5f298fff88eb2e.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_baseColor.png-3165c4a39a634137ac5f298fff88eb2e.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "3ff25dfc55427a0715009854fc216b4f"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn01_Mat_baseColor.png"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_baseColor.png-3165c4a39a634137ac5f298fff88eb2e.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_baseColor.png-3165c4a39a634137ac5f298fff88eb2e.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ctt37xonhd8eq"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_metallicRoughness.png-35d8629f94a3113ccb95140bc75a06b8.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_metallicRoughness.png-35d8629f94a3113ccb95140bc75a06b8.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "46215bf5400933f92d88dd09f759d38c"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn01_Mat_metallicRoughness.png"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_metallicRoughness.png-35d8629f94a3113ccb95140bc75a06b8.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_metallicRoughness.png-35d8629f94a3113ccb95140bc75a06b8.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=8
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn01_Mat_normal.jpg"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://nxq60kc57iwc"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_normal.jpg-72f8ae4fe8a5d65987c9b8f4273d0a23.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_normal.jpg-72f8ae4fe8a5d65987c9b8f4273d0a23.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "8808221849f0774f188cbeb747b5eef9"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn01_Mat_normal.jpg"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_normal.jpg-72f8ae4fe8a5d65987c9b8f4273d0a23.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Autumn01_Mat_normal.jpg-72f8ae4fe8a5d65987c9b8f4273d0a23.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn01_Mat_normal.jpg"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ch6je64ahilw1"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_baseColor.png-25b19b5346c71be34c023f7d6289fc8d.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_baseColor.png-25b19b5346c71be34c023f7d6289fc8d.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "3f2cdfd3dc772c323c5a8d2f7f7b2333"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn02_Mat_baseColor.png"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_baseColor.png-25b19b5346c71be34c023f7d6289fc8d.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_baseColor.png-25b19b5346c71be34c023f7d6289fc8d.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dhwdfagrwj8d2"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_metallicRoughness.png-5221518a2e05994bce9ae09fde0adce4.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_metallicRoughness.png-5221518a2e05994bce9ae09fde0adce4.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "7f8413717a937a36bf563c4fec2561fa"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn02_Mat_metallicRoughness.png"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_metallicRoughness.png-5221518a2e05994bce9ae09fde0adce4.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_metallicRoughness.png-5221518a2e05994bce9ae09fde0adce4.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=8
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn02_Mat_normal.jpg"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b42bv474v7q27"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_normal.jpg-5f8450c5f903418086ce37ecbf02930a.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_normal.jpg-5f8450c5f903418086ce37ecbf02930a.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "fbfe205941433f77eb8ada9ca9bf3cfe"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn02_Mat_normal.jpg"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_normal.jpg-5f8450c5f903418086ce37ecbf02930a.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Autumn02_Mat_normal.jpg-5f8450c5f903418086ce37ecbf02930a.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Autumn02_Mat_normal.jpg"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://chhqetj3y37k0"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_baseColor.jpg-052ff4d6f1d19317f1f4a2391c595f51.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_baseColor.jpg-052ff4d6f1d19317f1f4a2391c595f51.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "6f770a8170fbeb3be1ad9f34e06672cf"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Bark_Mat_baseColor.jpg"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_baseColor.jpg-052ff4d6f1d19317f1f4a2391c595f51.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_baseColor.jpg-052ff4d6f1d19317f1f4a2391c595f51.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://0eb7n52ycbr1"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_metallicRoughness.png-772a90a255b014e223d82444d3291c65.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_metallicRoughness.png-772a90a255b014e223d82444d3291c65.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "1cded7a029166a750f88e8a7ba0f597a"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Bark_Mat_metallicRoughness.png"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_metallicRoughness.png-772a90a255b014e223d82444d3291c65.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_metallicRoughness.png-772a90a255b014e223d82444d3291c65.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=8
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Bark_Mat_normal.jpg"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dsf7pm1agv8xp"
path.s3tc="res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_normal.jpg-8075c789c580edc75061d57cbf6331a8.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_normal.jpg-8075c789c580edc75061d57cbf6331a8.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "78bdab7c3a1e58bd955c7f2604d50c8d"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Bark_Mat_normal.jpg"
dest_files=["res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_normal.jpg-8075c789c580edc75061d57cbf6331a8.s3tc.ctex", "res://.godot/imported/outside-voluntary_Blackwalnut_Bark_Mat_normal.jpg-8075c789c580edc75061d57cbf6331a8.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Blackwalnut_Bark_Mat_normal.jpg"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b0jqtftxwdi55"
path.s3tc="res://.godot/imported/outside-voluntary_Leaf__02_diffuse.png-95bbf036a6cc0e0dc19a47c6f60e8ac1.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Leaf__02_diffuse.png-95bbf036a6cc0e0dc19a47c6f60e8ac1.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "ab737da90bb634e7d8ed74e4d8802f0f"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Leaf__02_diffuse.png"
dest_files=["res://.godot/imported/outside-voluntary_Leaf__02_diffuse.png-95bbf036a6cc0e0dc19a47c6f60e8ac1.s3tc.ctex", "res://.godot/imported/outside-voluntary_Leaf__02_diffuse.png-95bbf036a6cc0e0dc19a47c6f60e8ac1.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://be8rkw3iodm4p"
path.s3tc="res://.godot/imported/outside-voluntary_Leaf__02_normal.png-9a1ff3a745430b4e8a7d94aeb919dc5f.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Leaf__02_normal.png-9a1ff3a745430b4e8a7d94aeb919dc5f.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "209cef4ffa44ae50674309fe6d1f8153"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Leaf__02_normal.png"
dest_files=["res://.godot/imported/outside-voluntary_Leaf__02_normal.png-9a1ff3a745430b4e8a7d94aeb919dc5f.s3tc.ctex", "res://.godot/imported/outside-voluntary_Leaf__02_normal.png-9a1ff3a745430b4e8a7d94aeb919dc5f.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Leaf__02_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,43 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bionhqhabxgs"
path="res://.godot/imported/outside-voluntary_Leaf__02_specularGlossiness.png-d793362eb93896e24b9c4fc2a27e3a6f.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "30bb5d211da1955b21f028ec6581f1c8"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Leaf__02_specularGlossiness.png"
dest_files=["res://.godot/imported/outside-voluntary_Leaf__02_specularGlossiness.png-d793362eb93896e24b9c4fc2a27e3a6f.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cdljgx8yflat6"
path.s3tc="res://.godot/imported/outside-voluntary_Leaf__02_specularGlossiness_25.png-12e8b25e996c145f998058e36f8adeb1.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Leaf__02_specularGlossiness_25.png-12e8b25e996c145f998058e36f8adeb1.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "4773224d6fcd856ebdb0ac12cdb5d0f6"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Leaf__02_specularGlossiness_25.png"
dest_files=["res://.godot/imported/outside-voluntary_Leaf__02_specularGlossiness_25.png-12e8b25e996c145f998058e36f8adeb1.s3tc.ctex", "res://.godot/imported/outside-voluntary_Leaf__02_specularGlossiness_25.png-12e8b25e996c145f998058e36f8adeb1.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b7rcnk2hukx73"
path.s3tc="res://.godot/imported/outside-voluntary_Oak_Bark_diffuse.jpg-7cd7cb399be513ea8e313bf20873b1f5.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Oak_Bark_diffuse.jpg-7cd7cb399be513ea8e313bf20873b1f5.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "4c9ab27c61d0a67368610479cbaae671"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Oak_Bark_diffuse.jpg"
dest_files=["res://.godot/imported/outside-voluntary_Oak_Bark_diffuse.jpg-7cd7cb399be513ea8e313bf20873b1f5.s3tc.ctex", "res://.godot/imported/outside-voluntary_Oak_Bark_diffuse.jpg-7cd7cb399be513ea8e313bf20873b1f5.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://vwu8dh7e6spd"
path.s3tc="res://.godot/imported/outside-voluntary_Oak_Bark_normal.png-b68564f967e96045c6cf712b1a6c6269.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Oak_Bark_normal.png-b68564f967e96045c6cf712b1a6c6269.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "0ffb75f0c78a89e05fb13bd2bb7f136a"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Oak_Bark_normal.png"
dest_files=["res://.godot/imported/outside-voluntary_Oak_Bark_normal.png-b68564f967e96045c6cf712b1a6c6269.s3tc.ctex", "res://.godot/imported/outside-voluntary_Oak_Bark_normal.png-b68564f967e96045c6cf712b1a6c6269.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Oak_Bark_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c352vqrixa316"
path.s3tc="res://.godot/imported/outside-voluntary_Oak_Bark_occlusion-Oak_Bark_specularGlossiness.png-44b6fa0f1948e20ed31864c0ce37fabd.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Oak_Bark_occlusion-Oak_Bark_specularGlossiness.png-44b6fa0f1948e20ed31864c0ce37fabd.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "84e7c6d7d980bce3a0cf88798ec99966"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Oak_Bark_occlusion-Oak_Bark_specularGlossiness.png"
dest_files=["res://.godot/imported/outside-voluntary_Oak_Bark_occlusion-Oak_Bark_specularGlossiness.png-44b6fa0f1948e20ed31864c0ce37fabd.s3tc.ctex", "res://.godot/imported/outside-voluntary_Oak_Bark_occlusion-Oak_Bark_specularGlossiness.png-44b6fa0f1948e20ed31864c0ce37fabd.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=8
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Oak_Bark_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,43 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ch4px7hapwo4h"
path="res://.godot/imported/outside-voluntary_Oak_Bark_specularGlossiness.png-77905d1dbdbeda0534d1ec10f0241f43.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "44e46f100054e8b9d844c77eabeec592"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Oak_Bark_specularGlossiness.png"
dest_files=["res://.godot/imported/outside-voluntary_Oak_Bark_specularGlossiness.png-77905d1dbdbeda0534d1ec10f0241f43.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bp6u6u7mah2ns"
path.s3tc="res://.godot/imported/outside-voluntary_Platano_Trunk_diffuse.jpg-82b181dbb8b5b8534601751ba1d67d0c.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Platano_Trunk_diffuse.jpg-82b181dbb8b5b8534601751ba1d67d0c.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "593905ec8403dae819b14304bb5f6d8c"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Platano_Trunk_diffuse.jpg"
dest_files=["res://.godot/imported/outside-voluntary_Platano_Trunk_diffuse.jpg-82b181dbb8b5b8534601751ba1d67d0c.s3tc.ctex", "res://.godot/imported/outside-voluntary_Platano_Trunk_diffuse.jpg-82b181dbb8b5b8534601751ba1d67d0c.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dynfr86njewq"
path.s3tc="res://.godot/imported/outside-voluntary_Platano_Trunk_normal.png-b779b326a4da004c7921482328f296af.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_Platano_Trunk_normal.png-b779b326a4da004c7921482328f296af.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "64b321de21e298de2f1ef4fb7531dcd9"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_Platano_Trunk_normal.png"
dest_files=["res://.godot/imported/outside-voluntary_Platano_Trunk_normal.png-b779b326a4da004c7921482328f296af.s3tc.ctex", "res://.godot/imported/outside-voluntary_Platano_Trunk_normal.png-b779b326a4da004c7921482328f296af.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_Platano_Trunk_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cv82sm8thtprv"
path.s3tc="res://.godot/imported/outside-voluntary_aerial_grass_rock_diff_4k.jpg-ac537becab014918316dea55ee6c75b5.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_aerial_grass_rock_diff_4k.jpg-ac537becab014918316dea55ee6c75b5.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "5a7cd08d18da440e8a267c00ff2ed8c5"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_aerial_grass_rock_diff_4k.jpg"
dest_files=["res://.godot/imported/outside-voluntary_aerial_grass_rock_diff_4k.jpg-ac537becab014918316dea55ee6c75b5.s3tc.ctex", "res://.godot/imported/outside-voluntary_aerial_grass_rock_diff_4k.jpg-ac537becab014918316dea55ee6c75b5.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://byjh45al08ijb"
path.s3tc="res://.godot/imported/outside-voluntary_aerial_grass_rock_nor_gl_4k.png-e82d749e5022914ee3442d2b4546094d.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_aerial_grass_rock_nor_gl_4k.png-e82d749e5022914ee3442d2b4546094d.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "9967171ad902198decce6ae123dcf625"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_aerial_grass_rock_nor_gl_4k.png"
dest_files=["res://.godot/imported/outside-voluntary_aerial_grass_rock_nor_gl_4k.png-e82d749e5022914ee3442d2b4546094d.s3tc.ctex", "res://.godot/imported/outside-voluntary_aerial_grass_rock_nor_gl_4k.png-e82d749e5022914ee3442d2b4546094d.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_aerial_grass_rock_nor_gl_4k.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c8d5fngioxf4n"
path.s3tc="res://.godot/imported/outside-voluntary_aerial_grass_rock_rough_4k.png-2c41777ecc11bdcad4a4e3f4e3d21813.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_aerial_grass_rock_rough_4k.png-2c41777ecc11bdcad4a4e3f4e3d21813.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "141869f8ccf557f6b7a155ecb9236c26"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_aerial_grass_rock_rough_4k.png"
dest_files=["res://.godot/imported/outside-voluntary_aerial_grass_rock_rough_4k.png-2c41777ecc11bdcad4a4e3f4e3d21813.s3tc.ctex", "res://.godot/imported/outside-voluntary_aerial_grass_rock_rough_4k.png-2c41777ecc11bdcad4a4e3f4e3d21813.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://hct2d4ubfqt"
path.s3tc="res://.godot/imported/outside-voluntary_commieblock-provisionary-bake.png-df12388eb32f5db0091613b02ed9558d.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_commieblock-provisionary-bake.png-df12388eb32f5db0091613b02ed9558d.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "b03bba0200816822459042b12e5a4686"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_commieblock-provisionary-bake.png"
dest_files=["res://.godot/imported/outside-voluntary_commieblock-provisionary-bake.png-df12388eb32f5db0091613b02ed9558d.s3tc.ctex", "res://.godot/imported/outside-voluntary_commieblock-provisionary-bake.png-df12388eb32f5db0091613b02ed9558d.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dho5koje4a2yd"
path.s3tc="res://.godot/imported/outside-voluntary_leafs_Platano_diffuse.png-3c06012154592ec7534ef20c00849cd3.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_leafs_Platano_diffuse.png-3c06012154592ec7534ef20c00849cd3.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "ddd9b8702ae1449d7dd271a5361c6195"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_leafs_Platano_diffuse.png"
dest_files=["res://.godot/imported/outside-voluntary_leafs_Platano_diffuse.png-3c06012154592ec7534ef20c00849cd3.s3tc.ctex", "res://.godot/imported/outside-voluntary_leafs_Platano_diffuse.png-3c06012154592ec7534ef20c00849cd3.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bkv41m2576xdt"
path.s3tc="res://.godot/imported/outside-voluntary_leafs_Platano_normal.png-92ce3342f25727dbb7dcd8148eef956a.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_leafs_Platano_normal.png-92ce3342f25727dbb7dcd8148eef956a.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "3036237d92cebbe56c2df5519bae0e85"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_leafs_Platano_normal.png"
dest_files=["res://.godot/imported/outside-voluntary_leafs_Platano_normal.png-92ce3342f25727dbb7dcd8148eef956a.s3tc.ctex", "res://.godot/imported/outside-voluntary_leafs_Platano_normal.png-92ce3342f25727dbb7dcd8148eef956a.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_leafs_Platano_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c2rfsf4d7pngi"
path.s3tc="res://.godot/imported/outside-voluntary_mossybark02_0Mat_baseColor.png-054086469ad98d8652178b3a9adc7e55.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_mossybark02_0Mat_baseColor.png-054086469ad98d8652178b3a9adc7e55.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "f01f4bcfcb9379b112142760859f1462"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_mossybark02_0Mat_baseColor.png"
dest_files=["res://.godot/imported/outside-voluntary_mossybark02_0Mat_baseColor.png-054086469ad98d8652178b3a9adc7e55.s3tc.ctex", "res://.godot/imported/outside-voluntary_mossybark02_0Mat_baseColor.png-054086469ad98d8652178b3a9adc7e55.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dd424fjs1cmx1"
path.s3tc="res://.godot/imported/outside-voluntary_mossybark02_0Mat_metallicRoughness.png-59ccb1ae3f349e165cb212fa6fda97a4.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_mossybark02_0Mat_metallicRoughness.png-59ccb1ae3f349e165cb212fa6fda97a4.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "828e617596a6685605ce95a4292cd0ad"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_mossybark02_0Mat_metallicRoughness.png"
dest_files=["res://.godot/imported/outside-voluntary_mossybark02_0Mat_metallicRoughness.png-59ccb1ae3f349e165cb212fa6fda97a4.s3tc.ctex", "res://.godot/imported/outside-voluntary_mossybark02_0Mat_metallicRoughness.png-59ccb1ae3f349e165cb212fa6fda97a4.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c1bp7i5a36dv4"
path.s3tc="res://.godot/imported/outside-voluntary_mossybark02_0Mat_normal.png-e021512e3bc615fcade95461d936b27a.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_mossybark02_0Mat_normal.png-e021512e3bc615fcade95461d936b27a.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "45f5eb58862c58045f5b28465a3f4e24"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_mossybark02_0Mat_normal.png"
dest_files=["res://.godot/imported/outside-voluntary_mossybark02_0Mat_normal.png-e021512e3bc615fcade95461d936b27a.s3tc.ctex", "res://.godot/imported/outside-voluntary_mossybark02_0Mat_normal.png-e021512e3bc615fcade95461d936b27a.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_mossybark02_0Mat_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cyvstcdfklewe"
path.s3tc="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor.png-54d529ed6077430337e703267252b556.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor.png-54d529ed6077430337e703267252b556.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "f5b9844237a1b5ac89b17d2bc872480d"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_oak_leaf_1Mat_baseColor.png"
dest_files=["res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor.png-54d529ed6077430337e703267252b556.s3tc.ctex", "res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor.png-54d529ed6077430337e703267252b556.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c255n4v4dys0i"
path.s3tc="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor_autumn.png-53cdec4adf0ca8dd5a1c322246e7e491.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor_autumn.png-53cdec4adf0ca8dd5a1c322246e7e491.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "4eecd110d5656a1e573694a854a86e0b"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_oak_leaf_1Mat_baseColor_autumn.png"
dest_files=["res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor_autumn.png-53cdec4adf0ca8dd5a1c322246e7e491.s3tc.ctex", "res://.godot/imported/outside-voluntary_oak_leaf_1Mat_baseColor_autumn.png-53cdec4adf0ca8dd5a1c322246e7e491.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cbkfh4xnav8bn"
path.s3tc="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_metallicRoughness.png-79aca7a7239761efa4854171a11fad71.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_metallicRoughness.png-79aca7a7239761efa4854171a11fad71.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "c660e64d15378e727204e90c7248514d"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_oak_leaf_1Mat_metallicRoughness.png"
dest_files=["res://.godot/imported/outside-voluntary_oak_leaf_1Mat_metallicRoughness.png-79aca7a7239761efa4854171a11fad71.s3tc.ctex", "res://.godot/imported/outside-voluntary_oak_leaf_1Mat_metallicRoughness.png-79aca7a7239761efa4854171a11fad71.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bxyle1g4mxwxq"
path.s3tc="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_normal.png-2d3daa58c7b704052113d921b64ba2c6.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_oak_leaf_1Mat_normal.png-2d3daa58c7b704052113d921b64ba2c6.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "fb0a15fca99c50a819e351e79e662b68"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_oak_leaf_1Mat_normal.png"
dest_files=["res://.godot/imported/outside-voluntary_oak_leaf_1Mat_normal.png-2d3daa58c7b704052113d921b64ba2c6.s3tc.ctex", "res://.godot/imported/outside-voluntary_oak_leaf_1Mat_normal.png-2d3daa58c7b704052113d921b64ba2c6.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_oak_leaf_1Mat_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cdkye1kcj8gpu"
path.s3tc="res://.godot/imported/outside-voluntary_treetop_platano_diffuse.png-3c7b05e5b451dcc2c637fd66184fe2e8.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_treetop_platano_diffuse.png-3c7b05e5b451dcc2c637fd66184fe2e8.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "42326b31300eb98515a45809115824b0"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_treetop_platano_diffuse.png"
dest_files=["res://.godot/imported/outside-voluntary_treetop_platano_diffuse.png-3c7b05e5b451dcc2c637fd66184fe2e8.s3tc.ctex", "res://.godot/imported/outside-voluntary_treetop_platano_diffuse.png-3c7b05e5b451dcc2c637fd66184fe2e8.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dexeh2iis14ma"
path.s3tc="res://.godot/imported/outside-voluntary_treetop_platano_normal.png-e7d80d4e12c2ea753c6214193a48891b.s3tc.ctex"
path.etc2="res://.godot/imported/outside-voluntary_treetop_platano_normal.png-e7d80d4e12c2ea753c6214193a48891b.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "8754fff8f8cc5c98f45528d150b5bca3"
}
[deps]
source_file="res://base-environments/volunteer_room/import/outside-voluntary_treetop_platano_normal.png"
dest_files=["res://.godot/imported/outside-voluntary_treetop_platano_normal.png-e7d80d4e12c2ea753c6214193a48891b.s3tc.ctex", "res://.godot/imported/outside-voluntary_treetop_platano_normal.png-e7d80d4e12c2ea753c6214193a48891b.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://base-environments/volunteer_room/import/outside-voluntary_treetop_platano_normal.png"
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

BIN
src/base-environments/volunteer_room/import/smartphone.glb (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,42 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://biv5uojwcsjj3"
path="res://.godot/imported/smartphone.glb-9a06af404a07e63905aeaae0dc98bf14.scn"
[deps]
source_file="res://base-environments/volunteer_room/import/smartphone.glb"
dest_files=["res://.godot/imported/smartphone.glb-9a06af404a07e63905aeaae0dc98bf14.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
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=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
gltf/naming_version=2
gltf/embedded_image_handling=1

Binary file not shown.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://coxsnptq5la5b"
path.s3tc="res://.godot/imported/smartphone_Untitled.png-a7b918c109a5b5ef21db1689868a51db.s3tc.ctex"
path.etc2="res://.godot/imported/smartphone_Untitled.png-a7b918c109a5b5ef21db1689868a51db.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "4e9ddaf4962e21b03b06af23504d5720"
}
[deps]
source_file="res://base-environments/volunteer_room/import/smartphone_Untitled.png"
dest_files=["res://.godot/imported/smartphone_Untitled.png-a7b918c109a5b5ef21db1689868a51db.s3tc.ctex", "res://.godot/imported/smartphone_Untitled.png-a7b918c109a5b5ef21db1689868a51db.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -1,4 +1,4 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://dusx4y1ulmeu8"] [gd_resource type="StandardMaterial3D" format=3 uid="uid://dusx4y1ulmeu8"]
[ext_resource type="Texture2D" uid="uid://bhib85ucyk46w" path="res://base-environments/volunteer_room/import/volunteer_room_CarpetFluffy_baseColor.jpg" id="1_oy06i"] [ext_resource type="Texture2D" uid="uid://bhib85ucyk46w" path="res://base-environments/volunteer_room/import/volunteer_room_CarpetFluffy_baseColor.jpg" id="1_oy06i"]
[ext_resource type="Texture2D" uid="uid://bp1bnyh203tox" path="res://base-environments/volunteer_room/import/volunteer_room_CarpetFluffy_normal.png" id="2_clabb"] [ext_resource type="Texture2D" uid="uid://bp1bnyh203tox" path="res://base-environments/volunteer_room/import/volunteer_room_CarpetFluffy_normal.png" id="2_clabb"]

Binary file not shown.

View File

@ -0,0 +1,42 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c6516jjp4hr6o"
path.bptc="res://.godot/imported/cedar_bridge_sunset_1_4k.exr-a5685d317e1cc861c9146eb0cd1e2200.bptc.ctex"
path.astc="res://.godot/imported/cedar_bridge_sunset_1_4k.exr-a5685d317e1cc861c9146eb0cd1e2200.astc.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://base-environments/volunteer_room/import/textures/cedar_bridge_sunset_1_4k.exr"
dest_files=["res://.godot/imported/cedar_bridge_sunset_1_4k.exr-a5685d317e1cc861c9146eb0cd1e2200.bptc.ctex", "res://.godot/imported/cedar_bridge_sunset_1_4k.exr-a5685d317e1cc861c9146eb0cd1e2200.astc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,42 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://3x75d7dnaw5q"
path.s3tc="res://.godot/imported/neuroaffirmative-poster_de.png-b14fdb30a66b2514e648382474f368a9.s3tc.ctex"
path.etc2="res://.godot/imported/neuroaffirmative-poster_de.png-b14fdb30a66b2514e648382474f368a9.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://base-environments/volunteer_room/import/textures/neuroaffirmative-poster_de.png"
dest_files=["res://.godot/imported/neuroaffirmative-poster_de.png-b14fdb30a66b2514e648382474f368a9.s3tc.ctex", "res://.godot/imported/neuroaffirmative-poster_de.png-b14fdb30a66b2514e648382474f368a9.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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.

View File

@ -0,0 +1,42 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://0mnrbw1klw4c"
path.s3tc="res://.godot/imported/neuroaffirmative-poster_en.png-6613dea6fa9d8f6192386183dec2d118.s3tc.ctex"
path.etc2="res://.godot/imported/neuroaffirmative-poster_en.png-6613dea6fa9d8f6192386183dec2d118.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://base-environments/volunteer_room/import/textures/neuroaffirmative-poster_en.png"
dest_files=["res://.godot/imported/neuroaffirmative-poster_en.png-6613dea6fa9d8f6192386183dec2d118.s3tc.ctex", "res://.godot/imported/neuroaffirmative-poster_en.png-6613dea6fa9d8f6192386183dec2d118.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

View File

@ -1,4 +1,4 @@
[gd_resource type="StandardMaterial3D" load_steps=4 format=3 uid="uid://ke3t3myw8bp5"] [gd_resource type="StandardMaterial3D" format=3 uid="uid://ke3t3myw8bp5"]
[ext_resource type="Texture2D" uid="uid://bohlo158o8yk0" path="res://base-environments/volunteer_room/import/textures/Wallpaper002A_4K-JPG_Color.jpg" id="1_at1ey"] [ext_resource type="Texture2D" uid="uid://bohlo158o8yk0" path="res://base-environments/volunteer_room/import/textures/Wallpaper002A_4K-JPG_Color.jpg" id="1_at1ey"]
[ext_resource type="Texture2D" uid="uid://cowbnrpogw5he" path="res://base-environments/volunteer_room/import/textures/Wallpaper002A_4K-JPG_NormalGL.jpg" id="2_bali2"] [ext_resource type="Texture2D" uid="uid://cowbnrpogw5he" path="res://base-environments/volunteer_room/import/textures/Wallpaper002A_4K-JPG_NormalGL.jpg" id="2_bali2"]

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,45 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://co7kgkel0867m"
path.s3tc="res://.godot/imported/volunteer_room_Default_OBJ_80.png-159522e3efaebd692f9269ac7b17a2bc.s3tc.ctex"
path.etc2="res://.godot/imported/volunteer_room_Default_OBJ_80.png-159522e3efaebd692f9269ac7b17a2bc.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
generator_parameters={
"md5": "9a76736d901025da163b366efb05b287"
}
[deps]
source_file="res://base-environments/volunteer_room/import/volunteer_room_Default_OBJ_80.png"
dest_files=["res://.godot/imported/volunteer_room_Default_OBJ_80.png-159522e3efaebd692f9269ac7b17a2bc.s3tc.ctex", "res://.godot/imported/volunteer_room_Default_OBJ_80.png-159522e3efaebd692f9269ac7b17a2bc.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
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/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
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

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