Add initial Sponza benchmark (#47)

* add Sponza.dae and related assets

files copied from: https://github.com/Calinou/godot-sponza/tree/4.0-dev

* [wip] add sponza benchmark

* add script to tweak sponza materials

* add omni lights + enable shadows

* Remove unused resources from Sponza

* Convert Sponza to glTF + lossless WebP

This greatly decreases file size and speeds up loading.

---------

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
This commit is contained in:
Francisco Demartino
2024-01-15 19:14:20 -03:00
committed by GitHub
parent 9b9a195924
commit ff141decc4
102 changed files with 1725 additions and 1 deletions

View File

@@ -0,0 +1,47 @@
extends Benchmark
func _init():
test_render_cpu = true
test_render_gpu = true
class TestScene extends Node3D:
var sponza_scene = preload("res://benchmarks/rendering/sponza.tscn")
var sponza
var using_directional_light: bool
var using_omni_lights: bool
func _init():
sponza = sponza_scene.instantiate()
add_child(sponza)
func with_directional_light():
using_directional_light = true
return self
func with_omni_lights():
using_omni_lights = true
return self
func _ready():
$"Sponza/DirectionalLight3D".visible = using_directional_light
$"Sponza/OmniLights".visible = using_omni_lights
func _process(delta):
pass
func _exit_tree():
RenderingServer.free_rid(sponza)
func benchmark_sponza_ambient():
return TestScene.new()
func benchmark_sponza_directional():
return TestScene.new().with_directional_light()
func benchmark_sponza_omni():
return TestScene.new().with_omni_lights()

View File

@@ -0,0 +1,57 @@
[gd_scene load_steps=2 format=3 uid="uid://lhj56divlnw3"]
[ext_resource type="PackedScene" uid="uid://b0c2qturgt8i6" path="res://thirdparty/sponza/sponza.glb" id="1_1w3b0"]
[node name="Sponza" type="Node3D"]
[node name="sponza" parent="." instance=ExtResource("1_1w3b0")]
[node name="Camera3D" type="Camera3D" parent="."]
transform = Transform3D(-4.37114e-08, 3.48787e-16, 1, 3.48787e-16, 1, -3.48787e-16, -1, 3.48787e-16, -4.37114e-08, 7.25, 0.9, -0.225)
current = true
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
transform = Transform3D(0.5, -0.852869, 0.150384, 6.05662e-17, 0.173648, 0.984808, -0.866025, -0.492404, 0.0868241, 0, 0, 0)
shadow_enabled = true
[node name="OmniLights" type="Node3D" parent="."]
[node name="OmniLight3D" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.05361, 0.966716, 0.907753)
light_energy = 0.5
shadow_enabled = true
[node name="OmniLight3D2" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.05361, 0.966716, -1.35595)
light_energy = 0.5
shadow_enabled = true
[node name="OmniLight3D3" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.85783, 0.966716, 0.907753)
light_energy = 0.5
shadow_enabled = true
[node name="OmniLight3D4" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.85783, 0.966716, -1.35595)
light_energy = 0.5
shadow_enabled = true
[node name="OmniLight3D5" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.99073, 1.39109, 2.534)
light_color = Color(1, 0.584314, 0, 1)
shadow_enabled = true
[node name="OmniLight3D6" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.99073, 1.39109, -2.80553)
light_color = Color(0, 1, 0, 1)
shadow_enabled = true
[node name="OmniLight3D7" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.5058, 1.39109, 2.534)
light_color = Color(0.701961, 0, 1, 1)
shadow_enabled = true
[node name="OmniLight3D8" type="OmniLight3D" parent="OmniLights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.5058, 1.39109, -2.80553)
light_color = Color(0, 0, 1, 1)
shadow_enabled = true

View File

@@ -12,7 +12,7 @@ config_version=5
config/name="Godot Benchmarks"
run/main_scene="res://main.tscn"
config/features=PackedStringArray("4.2")
config/features=PackedStringArray("4.3")
config/icon="res://icon.png"
[autoload]

11
thirdparty/sponza/Material__25.tres vendored Normal file
View File

@@ -0,0 +1,11 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://hs2ob5edfwom"]
[ext_resource type="Texture2D" uid="uid://dkub6fpbj3o0r" path="res://thirdparty/sponza/textures/lion.webp" id="1_tnn7u"]
[ext_resource type="Texture2D" uid="uid://cx87f7q45oulv" path="res://thirdparty/sponza/textures/lion_ddn.webp" id="2_prxi6"]
[resource]
resource_name = "Material__25"
albedo_texture = ExtResource("1_tnn7u")
normal_enabled = true
normal_texture = ExtResource("2_prxi6")
texture_filter = 5

11
thirdparty/sponza/Material__298.tres vendored Normal file
View File

@@ -0,0 +1,11 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://cujxyiepujuat"]
[ext_resource type="Texture2D" uid="uid://clipou3fhmvxj" path="res://thirdparty/sponza/textures/background.webp" id="1_7atb2"]
[ext_resource type="Texture2D" uid="uid://lbhsqbq5crv6" path="res://thirdparty/sponza/textures/background_ddn.webp" id="2_ejjwe"]
[resource]
resource_name = "Material__298"
albedo_texture = ExtResource("1_7atb2")
normal_enabled = true
normal_texture = ExtResource("2_ejjwe")
texture_filter = 5

6
thirdparty/sponza/Material__47.tres vendored Normal file
View File

@@ -0,0 +1,6 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://x6ogq1unkdsl"]
[resource]
resource_name = "Material__47"
albedo_color = Color(0.588, 0.588, 0.588, 1)
texture_filter = 5

9
thirdparty/sponza/Material__57.tres vendored Normal file
View File

@@ -0,0 +1,9 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://cj1vtf8mboe12"]
[ext_resource type="Texture2D" uid="uid://drdycbp6gcpjn" path="res://thirdparty/sponza/textures/vase_plant.webp" id="1_bpr0x"]
[resource]
resource_name = "Material__57"
transparency = 4
albedo_texture = ExtResource("1_bpr0x")
texture_filter = 5

8
thirdparty/sponza/arch.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://bxra8tljpa4eg"]
[ext_resource type="Texture2D" uid="uid://bgvqoi1hqfkk" path="res://thirdparty/sponza/textures/sponza_arch_diff.webp" id="1_1ftcv"]
[resource]
resource_name = "arch"
albedo_texture = ExtResource("1_1ftcv")
texture_filter = 5

10
thirdparty/sponza/bricks.tres vendored Normal file
View File

@@ -0,0 +1,10 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://cvym4sc3s4aet"]
[ext_resource type="Texture2D" uid="uid://62k2ptb2o6mb" path="res://thirdparty/sponza/textures/spnza_bricks_a_diff.webp" id="1_3516i"]
[resource]
resource_name = "bricks"
albedo_texture = ExtResource("1_3516i")
normal_enabled = true
normal_texture = ExtResource("1_3516i")
texture_filter = 5

8
thirdparty/sponza/ceiling.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://cq7to4no56eux"]
[ext_resource type="Texture2D" uid="uid://bp6u702m0hn1g" path="res://thirdparty/sponza/textures/sponza_ceiling_a_diff.webp" id="1_qqtfa"]
[resource]
resource_name = "ceiling"
albedo_texture = ExtResource("1_qqtfa")
texture_filter = 5

12
thirdparty/sponza/chain.tres vendored Normal file
View File

@@ -0,0 +1,12 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://cfx2ekbwhhggp"]
[ext_resource type="Texture2D" uid="uid://dcxb6tmdvaoeh" path="res://thirdparty/sponza/textures/chain_texture.webp" id="1_eqp7h"]
[ext_resource type="Texture2D" uid="uid://cdy41v8ops2yo" path="res://thirdparty/sponza/textures/chain_texture_ddn.webp" id="2_2kx3d"]
[resource]
resource_name = "chain"
transparency = 4
albedo_texture = ExtResource("1_eqp7h")
normal_enabled = true
normal_texture = ExtResource("2_2kx3d")
texture_filter = 5

11
thirdparty/sponza/column_a.tres vendored Normal file
View File

@@ -0,0 +1,11 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://ucu8bs3r1jif"]
[ext_resource type="Texture2D" uid="uid://brbt3nvc6l8m2" path="res://thirdparty/sponza/textures/sponza_column_a_diff.webp" id="1_p6qpp"]
[ext_resource type="Texture2D" uid="uid://df5jk5wj07bh3" path="res://thirdparty/sponza/textures/sponza_column_a_ddn.webp" id="2_myx5k"]
[resource]
resource_name = "column_a"
albedo_texture = ExtResource("1_p6qpp")
normal_enabled = true
normal_texture = ExtResource("2_myx5k")
texture_filter = 5

11
thirdparty/sponza/column_b.tres vendored Normal file
View File

@@ -0,0 +1,11 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://dfacanouflrfy"]
[ext_resource type="Texture2D" uid="uid://cmytc08hduswr" path="res://thirdparty/sponza/textures/sponza_column_b_diff.webp" id="1_p23kf"]
[ext_resource type="Texture2D" uid="uid://ebr4li6258pp" path="res://thirdparty/sponza/textures/sponza_column_b_ddn.webp" id="2_fuuma"]
[resource]
resource_name = "column_b"
albedo_texture = ExtResource("1_p23kf")
normal_enabled = true
normal_texture = ExtResource("2_fuuma")
texture_filter = 5

11
thirdparty/sponza/column_c.tres vendored Normal file
View File

@@ -0,0 +1,11 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://bc543ekonhvyf"]
[ext_resource type="Texture2D" uid="uid://ch2qtl5gaiaf1" path="res://thirdparty/sponza/textures/sponza_column_c_diff.webp" id="1_n7bhk"]
[ext_resource type="Texture2D" uid="uid://bdrybxhvb125c" path="res://thirdparty/sponza/textures/sponza_column_c_ddn.webp" id="2_jx7v4"]
[resource]
resource_name = "column_c"
albedo_texture = ExtResource("1_n7bhk")
normal_enabled = true
normal_texture = ExtResource("2_jx7v4")
texture_filter = 5

8
thirdparty/sponza/details.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://bxledl2mfrmyo"]
[ext_resource type="Texture2D" uid="uid://ekrij1dc03uk" path="res://thirdparty/sponza/textures/sponza_details_diff.webp" id="1_xyq0w"]
[resource]
resource_name = "details"
albedo_texture = ExtResource("1_xyq0w")
texture_filter = 5

8
thirdparty/sponza/fabric_a.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://b2k5wm0umiyg"]
[ext_resource type="Texture2D" uid="uid://d0cd8gxluuab7" path="res://thirdparty/sponza/textures/sponza_fabric_diff.webp" id="1_roq6h"]
[resource]
resource_name = "fabric_a"
albedo_texture = ExtResource("1_roq6h")
texture_filter = 5

8
thirdparty/sponza/fabric_c.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://bgrv88wce7ond"]
[ext_resource type="Texture2D" uid="uid://o4gr4nm52rlo" path="res://thirdparty/sponza/textures/sponza_curtain_diff.webp" id="1_pw5sx"]
[resource]
resource_name = "fabric_c"
albedo_texture = ExtResource("1_pw5sx")
texture_filter = 5

8
thirdparty/sponza/fabric_d.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://1b35kbua7c1l"]
[ext_resource type="Texture2D" uid="uid://qcdx5nms8qye" path="res://thirdparty/sponza/textures/sponza_fabric_blue_diff.webp" id="1_weenx"]
[resource]
resource_name = "fabric_d"
albedo_texture = ExtResource("1_weenx")
texture_filter = 5

8
thirdparty/sponza/fabric_e.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://dxghi28dk231n"]
[ext_resource type="Texture2D" uid="uid://eke5bnjw2wmu" path="res://thirdparty/sponza/textures/sponza_fabric_green_diff.webp" id="1_vx7aa"]
[resource]
resource_name = "fabric_e"
albedo_texture = ExtResource("1_vx7aa")
texture_filter = 5

8
thirdparty/sponza/fabric_f.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://wob3ru8lvm6t"]
[ext_resource type="Texture2D" uid="uid://tc1y3mhctyw1" path="res://thirdparty/sponza/textures/sponza_curtain_green_diff.webp" id="1_wibte"]
[resource]
resource_name = "fabric_f"
albedo_texture = ExtResource("1_wibte")
texture_filter = 5

8
thirdparty/sponza/fabric_g.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://yyr032hvmw4v"]
[ext_resource type="Texture2D" uid="uid://km0r414keg4m" path="res://thirdparty/sponza/textures/sponza_curtain_blue_diff.webp" id="1_mmtlw"]
[resource]
resource_name = "fabric_g"
albedo_texture = ExtResource("1_mmtlw")
texture_filter = 5

8
thirdparty/sponza/flagpole.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://cwatjyk4hqkhn"]
[ext_resource type="Texture2D" uid="uid://pvlycu0rk1d4" path="res://thirdparty/sponza/textures/sponza_flagpole_diff.webp" id="1_tvdlb"]
[resource]
resource_name = "flagpole"
albedo_texture = ExtResource("1_tvdlb")
texture_filter = 5

8
thirdparty/sponza/floor.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://lgwhv3agifiw"]
[ext_resource type="Texture2D" uid="uid://dqbqbh0ej28" path="res://thirdparty/sponza/textures/sponza_floor_a_diff.webp" id="1_ufulj"]
[resource]
resource_name = "floor"
albedo_texture = ExtResource("1_ufulj")
texture_filter = 5

12
thirdparty/sponza/leaf.tres vendored Normal file
View File

@@ -0,0 +1,12 @@
[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://bfeekuxw8xn3c"]
[ext_resource type="Texture2D" uid="uid://4ddsefheyfvd" path="res://thirdparty/sponza/textures/sponza_thorn_diff.webp" id="1_1xbna"]
[ext_resource type="Texture2D" uid="uid://bjksnrd26o88d" path="res://thirdparty/sponza/textures/sponza_thorn_ddn.webp" id="2_wijuo"]
[resource]
resource_name = "leaf"
transparency = 4
albedo_texture = ExtResource("1_1xbna")
normal_enabled = true
normal_texture = ExtResource("2_wijuo")
texture_filter = 5

8
thirdparty/sponza/roof.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://c4tpifbg7wrtp"]
[ext_resource type="Texture2D" uid="uid://chjkjxwkaiah4" path="res://thirdparty/sponza/textures/sponza_roof_diff.webp" id="1_kngsu"]
[resource]
resource_name = "roof"
albedo_texture = ExtResource("1_kngsu")
texture_filter = 5

BIN
thirdparty/sponza/sponza.glb vendored Normal file

Binary file not shown.

137
thirdparty/sponza/sponza.glb.import vendored Normal file
View File

@@ -0,0 +1,137 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://b0c2qturgt8i6"
path="res://.godot/imported/sponza.glb-7bd13a85620f791cba6b8e09b961cc23.scn"
[deps]
source_file="res://thirdparty/sponza/sponza.glb"
dest_files=["res://.godot/imported/sponza.glb-7bd13a85620f791cba6b8e09b961cc23.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=0.125
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
import_script/path=""
_subresources={
"materials": {
"Material__25": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/Material__25.tres"
},
"Material__298": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/Material__298.tres"
},
"Material__47": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/Material__47.tres"
},
"Material__57": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/Material__57.tres"
},
"arch": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/arch.tres"
},
"bricks": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/bricks.tres"
},
"ceiling": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/ceiling.tres"
},
"chain": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/chain.tres"
},
"column_a": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/column_a.tres"
},
"column_b": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/column_b.tres"
},
"column_c": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/column_c.tres"
},
"details": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/details.tres"
},
"fabric_a": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/fabric_a.tres"
},
"fabric_c": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/fabric_c.tres"
},
"fabric_d": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/fabric_d.tres"
},
"fabric_e": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/fabric_e.tres"
},
"fabric_f": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/fabric_f.tres"
},
"fabric_g": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/fabric_g.tres"
},
"flagpole": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/flagpole.tres"
},
"floor": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/floor.tres"
},
"leaf": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/leaf.tres"
},
"roof": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/roof.tres"
},
"vase": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/vase.tres"
},
"vase_hanging": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/vase_hanging.tres"
},
"vase_round": {
"use_external/enabled": true,
"use_external/path": "res://thirdparty/sponza/vase_round.tres"
}
}
}
gltf/naming_version=1
gltf/embedded_image_handling=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://25g5gn5oqyl5"
path.s3tc="res://.godot/imported/background.webp-fcbaff7460489fccdaf7d4c5600d5b07.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/background.webp"
dest_files=["res://.godot/imported/background.webp-fcbaff7460489fccdaf7d4c5600d5b07.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 770 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b5tqyajuyauyg"
path.s3tc="res://.godot/imported/background_ddn.webp-374aedc16aa874d0f89861c492443a06.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/background_ddn.webp"
dest_files=["res://.godot/imported/background_ddn.webp-374aedc16aa874d0f89861c492443a06.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/background_ddn.webp"
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cahwai6iktk52"
path.s3tc="res://.godot/imported/chain_texture.webp-64a13f1da783a8587fc6705a7c3a69a5.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/chain_texture.webp"
dest_files=["res://.godot/imported/chain_texture.webp-64a13f1da783a8587fc6705a7c3a69a5.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://h5vhlxdy14rc"
path.s3tc="res://.godot/imported/chain_texture_ddn.webp-7ba5db5fe0bd8c9a725d68c8a86c87f9.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/chain_texture_ddn.webp"
dest_files=["res://.godot/imported/chain_texture_ddn.webp-7ba5db5fe0bd8c9a725d68c8a86c87f9.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/chain_texture_ddn.webp"
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
thirdparty/sponza/textures/lion.webp vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b4bal7tk2os30"
path.s3tc="res://.godot/imported/lion.webp-4c25fc34d5123c2b1de8ed08b09292dc.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/lion.webp"
dest_files=["res://.godot/imported/lion.webp-4c25fc34d5123c2b1de8ed08b09292dc.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b3qkl3g7wiqff"
path="res://.godot/imported/lion2_ddn.webp-018b954b0ee3efc6451c6a08c8150b79.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thirdparty/sponza/textures/lion2_ddn.webp"
dest_files=["res://.godot/imported/lion2_ddn.webp-018b954b0ee3efc6451c6a08c8150b79.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
thirdparty/sponza/textures/lion_ddn.webp vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://doihj4aiajwes"
path.s3tc="res://.godot/imported/lion_ddn.webp-a60f0140d93cb1e71f496fb20b1eaf6c.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/lion_ddn.webp"
dest_files=["res://.godot/imported/lion_ddn.webp-a60f0140d93cb1e71f496fb20b1eaf6c.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/lion_ddn.webp"
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b1q8mge45rwvj"
path="res://.godot/imported/spnza_bricks_a_ddn.webp-71a5e73efc7497e187c2d39abe7d93a9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thirdparty/sponza/textures/spnza_bricks_a_ddn.webp"
dest_files=["res://.godot/imported/spnza_bricks_a_ddn.webp-71a5e73efc7497e187c2d39abe7d93a9.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d4f5j1x1gh7ee"
path.s3tc="res://.godot/imported/spnza_bricks_a_diff.webp-f3e84773bc50788d094125e968f0d80b.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/spnza_bricks_a_diff.webp"
dest_files=["res://.godot/imported/spnza_bricks_a_diff.webp-f3e84773bc50788d094125e968f0d80b.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal="res://thirdparty/sponza/textures/spnza_bricks_a_diff.webp"
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://df2kk6lgyrpl0"
path="res://.godot/imported/sponza_arch_ddn.webp-2a9b4fb8c6bb3fdf24f5a834dc315f1a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_arch_ddn.webp"
dest_files=["res://.godot/imported/sponza_arch_ddn.webp-2a9b4fb8c6bb3fdf24f5a834dc315f1a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d0uvi1xyjs8bl"
path.s3tc="res://.godot/imported/sponza_arch_diff.webp-0ba769b55e06cce3e706140cd1ca5ef0.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_arch_diff.webp"
dest_files=["res://.godot/imported/sponza_arch_diff.webp-0ba769b55e06cce3e706140cd1ca5ef0.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dylb0y22dioxq"
path.s3tc="res://.godot/imported/sponza_ceiling_a_diff.webp-47381e156373b95bf4df76a6fd4de96a.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_ceiling_a_diff.webp"
dest_files=["res://.godot/imported/sponza_ceiling_a_diff.webp-47381e156373b95bf4df76a6fd4de96a.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cc8rd7jf7g6q3"
path.s3tc="res://.godot/imported/sponza_column_a_ddn.webp-39c0821495e2093c805789f2054a3776.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_column_a_ddn.webp"
dest_files=["res://.godot/imported/sponza_column_a_ddn.webp-39c0821495e2093c805789f2054a3776.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/sponza_column_a_ddn.webp"
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://nh5iykn5xi4w"
path.s3tc="res://.godot/imported/sponza_column_a_diff.webp-936df824db06b114a05b18abf03f2e59.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_column_a_diff.webp"
dest_files=["res://.godot/imported/sponza_column_a_diff.webp-936df824db06b114a05b18abf03f2e59.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1015 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bhdmxc5rikwba"
path.s3tc="res://.godot/imported/sponza_column_b_ddn.webp-d1c49cbda9d617496f37d22ea28f0b91.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_column_b_ddn.webp"
dest_files=["res://.godot/imported/sponza_column_b_ddn.webp-d1c49cbda9d617496f37d22ea28f0b91.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/sponza_column_b_ddn.webp"
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c2r8w86rfxk4x"
path.s3tc="res://.godot/imported/sponza_column_b_diff.webp-9d5e345c523a28288ec27d097b744c38.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_column_b_diff.webp"
dest_files=["res://.godot/imported/sponza_column_b_diff.webp-9d5e345c523a28288ec27d097b744c38.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://kjyyeuqjai8u"
path.s3tc="res://.godot/imported/sponza_column_c_ddn.webp-bfdb6cd884f636a6201d6085c36188bd.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_column_c_ddn.webp"
dest_files=["res://.godot/imported/sponza_column_c_ddn.webp-bfdb6cd884f636a6201d6085c36188bd.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/sponza_column_c_ddn.webp"
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dlmup25jjvhhc"
path.s3tc="res://.godot/imported/sponza_column_c_diff.webp-ee4d2ecaa203980864cb0f25210a6878.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_column_c_diff.webp"
dest_files=["res://.godot/imported/sponza_column_c_diff.webp-ee4d2ecaa203980864cb0f25210a6878.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c6fn16xu6jiin"
path.s3tc="res://.godot/imported/sponza_curtain_blue_diff.webp-e65dfda6e316cd93f4a890e7542959dd.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_curtain_blue_diff.webp"
dest_files=["res://.godot/imported/sponza_curtain_blue_diff.webp-e65dfda6e316cd93f4a890e7542959dd.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b1xu7jewqh8mf"
path.s3tc="res://.godot/imported/sponza_curtain_diff.webp-0451f3d262ceafe50502963c0b927315.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_curtain_diff.webp"
dest_files=["res://.godot/imported/sponza_curtain_diff.webp-0451f3d262ceafe50502963c0b927315.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://e7nljjp7ia2j"
path.s3tc="res://.godot/imported/sponza_curtain_green_diff.webp-72ac0232ca9465e4111d70211437da41.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_curtain_green_diff.webp"
dest_files=["res://.godot/imported/sponza_curtain_green_diff.webp-72ac0232ca9465e4111d70211437da41.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1010 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cpt8nd7od6e1t"
path.s3tc="res://.godot/imported/sponza_details_diff.webp-78c5c7f18807453e960e85860bdac4fe.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_details_diff.webp"
dest_files=["res://.godot/imported/sponza_details_diff.webp-78c5c7f18807453e960e85860bdac4fe.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ca14n8tvyesc"
path.s3tc="res://.godot/imported/sponza_fabric_blue_diff.webp-42684b200e9732d5c733863dd791b629.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_fabric_blue_diff.webp"
dest_files=["res://.godot/imported/sponza_fabric_blue_diff.webp-42684b200e9732d5c733863dd791b629.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bbi7pw21x25h5"
path.s3tc="res://.godot/imported/sponza_fabric_diff.webp-3786a0d58a7d716b6fc62fde4fe0be56.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_fabric_diff.webp"
dest_files=["res://.godot/imported/sponza_fabric_diff.webp-3786a0d58a7d716b6fc62fde4fe0be56.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c2aa716m18kun"
path.s3tc="res://.godot/imported/sponza_fabric_green_diff.webp-ccb37494c019fe2937f1c9fac549867d.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_fabric_green_diff.webp"
dest_files=["res://.godot/imported/sponza_fabric_green_diff.webp-ccb37494c019fe2937f1c9fac549867d.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://xisl0qrj1h1u"
path.s3tc="res://.godot/imported/sponza_flagpole_diff.webp-a2caba1908247355375cf050a2fdf574.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_flagpole_diff.webp"
dest_files=["res://.godot/imported/sponza_flagpole_diff.webp-a2caba1908247355375cf050a2fdf574.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://8px248vwrpgb"
path.s3tc="res://.godot/imported/sponza_floor_a_diff.webp-512c62597b2ce4b63877d5b9e62be23e.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_floor_a_diff.webp"
dest_files=["res://.godot/imported/sponza_floor_a_diff.webp-512c62597b2ce4b63877d5b9e62be23e.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://8cw1nbwrke7s"
path.s3tc="res://.godot/imported/sponza_roof_diff.webp-ea7c194b85181fd8c570495a37451bef.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_roof_diff.webp"
dest_files=["res://.godot/imported/sponza_roof_diff.webp-ea7c194b85181fd8c570495a37451bef.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://o2hkv5gf0g5w"
path.s3tc="res://.godot/imported/sponza_thorn_ddn.webp-5707dcdff4129d15d61d23105ba77950.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_thorn_ddn.webp"
dest_files=["res://.godot/imported/sponza_thorn_ddn.webp-5707dcdff4129d15d61d23105ba77950.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/sponza_thorn_ddn.webp"
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bdqmxodvt6h5o"
path.s3tc="res://.godot/imported/sponza_thorn_diff.webp-a1b774b1583beb018cd458735509a24d.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/sponza_thorn_diff.webp"
dest_files=["res://.godot/imported/sponza_thorn_diff.webp-a1b774b1583beb018cd458735509a24d.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=2
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=1
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

BIN
thirdparty/sponza/textures/vase_ddn.webp vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bo4nh6kw7kqnp"
path="res://.godot/imported/vase_ddn.webp-d9015f85b152b1fabe54c73ce90b767c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thirdparty/sponza/textures/vase_ddn.webp"
dest_files=["res://.godot/imported/vase_ddn.webp-d9015f85b152b1fabe54c73ce90b767c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
thirdparty/sponza/textures/vase_dif.webp vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bngm73rp5d85s"
path.s3tc="res://.godot/imported/vase_dif.webp-46bf3141670d6fa455ea81b9bfa1aede.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/vase_dif.webp"
dest_files=["res://.godot/imported/vase_dif.webp-46bf3141670d6fa455ea81b9bfa1aede.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://2vnletmqed4r"
path.s3tc="res://.godot/imported/vase_hanging.webp-3dbaaa316b267b977d4c7d1e6488f001.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/vase_hanging.webp"
dest_files=["res://.godot/imported/vase_hanging.webp-3dbaaa316b267b977d4c7d1e6488f001.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dalcyia3mcbag"
path.s3tc="res://.godot/imported/vase_plant.webp-fb05af2ffcb2121bd1c0e30def6fef81.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/vase_plant.webp"
dest_files=["res://.godot/imported/vase_plant.webp-fb05af2ffcb2121bd1c0e30def6fef81.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cb4d4c4o65xnd"
path.s3tc="res://.godot/imported/vase_round.webp-3d17dcf8047da25fa36132774cc60ec9.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/vase_round.webp"
dest_files=["res://.godot/imported/vase_round.webp-3d17dcf8047da25fa36132774cc60ec9.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bng4xf0v8qk77"
path.s3tc="res://.godot/imported/vase_round_ddn.webp-e9dfaaa0da470d7a0e48c3e266f820d8.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://thirdparty/sponza/textures/vase_round_ddn.webp"
dest_files=["res://.godot/imported/vase_round_ddn.webp-e9dfaaa0da470d7a0e48c3e266f820d8.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
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://thirdparty/sponza/textures/vase_round_ddn.webp"
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

8
thirdparty/sponza/vase.tres vendored Normal file
View File

@@ -0,0 +1,8 @@
[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://b4mtplnrkl1as"]
[ext_resource type="Texture2D" uid="uid://vaytd7kjqbwg" path="res://thirdparty/sponza/textures/vase_dif.webp" id="1_5avvo"]
[resource]
resource_name = "vase"
albedo_texture = ExtResource("1_5avvo")
texture_filter = 5

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