Merge pull request #35 from Calinou/add-test-project-export
Add test project export for CI
5
tests/test_project/.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
*.dblite
|
||||
|
||||
# Ignore the submodule so we don't add it to version control.
|
||||
# We clone it on CI when needed instead.
|
||||
addons/test_extension/src/godot-cpp
|
||||
13
tests/test_project/LICENSE.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# License for third-party files
|
||||
|
||||
## `polyhaven/*`
|
||||
|
||||
Copyright (c) Poly Haven
|
||||
|
||||
- Upstream: https://polyhaven.com
|
||||
- License: CC0-1.0
|
||||
|
||||
## `fonts/librequake_conchars.webp`
|
||||
|
||||
- Upstream: https://github.com/lavenderdotpet/LibreQuake
|
||||
- License: BSD-3-Clause
|
||||
6
tests/test_project/SConstruct
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# ruff: noqa: F821
|
||||
|
||||
# This file is for building as a Godot GDExtension.
|
||||
SConscript("addons/test_extension/SConstruct")
|
||||
14
tests/test_project/custom_shader.gdshader
Normal file
@@ -0,0 +1,14 @@
|
||||
shader_type spatial;
|
||||
|
||||
global uniform vec3 offset;
|
||||
instance uniform vec3 emission : source_color = vec3(1.0, 0.0, 0.0);
|
||||
uniform vec3 color : source_color = vec3(1.0, 0.0, 0.0);
|
||||
|
||||
void vertex() {
|
||||
VERTEX.xyz += offset;
|
||||
}
|
||||
|
||||
void fragment() {
|
||||
ALBEDO = color.rgb;
|
||||
EMISSION = emission.rgb;
|
||||
}
|
||||
1
tests/test_project/custom_shader.gdshader.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://cqkjq1u1jfe1c
|
||||
12
tests/test_project/custom_visual_shader.tres
Normal file
@@ -0,0 +1,12 @@
|
||||
[gd_resource type="VisualShader" load_steps=2 format=3 uid="uid://barg7ns55yag2"]
|
||||
|
||||
[sub_resource type="VisualShaderNodeColorParameter" id="VisualShaderNodeColorParameter_bwiop"]
|
||||
output_port_for_preview = 0
|
||||
parameter_name = "ColorParameter"
|
||||
default_value_enabled = true
|
||||
default_value = Color(1, 0, 0, 1)
|
||||
|
||||
[resource]
|
||||
nodes/fragment/2/node = SubResource("VisualShaderNodeColorParameter_bwiop")
|
||||
nodes/fragment/2/position = Vector2(20, 260)
|
||||
nodes/fragment/connections = PackedInt32Array(2, 0, 0, 0)
|
||||
86
tests/test_project/export_presets.cfg
Normal file
@@ -0,0 +1,86 @@
|
||||
[preset.0]
|
||||
|
||||
name="Linux"
|
||||
platform="Linux"
|
||||
runnable=true
|
||||
dedicated_server=false
|
||||
custom_features=""
|
||||
export_filter="all_resources"
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path=""
|
||||
patches=PackedStringArray()
|
||||
encryption_include_filters=""
|
||||
encryption_exclude_filters=""
|
||||
seed=0
|
||||
encrypt_pck=false
|
||||
encrypt_directory=false
|
||||
script_export_mode=2
|
||||
|
||||
[preset.0.options]
|
||||
|
||||
custom_template/debug=""
|
||||
custom_template/release=""
|
||||
debug/export_console_wrapper=1
|
||||
binary_format/embed_pck=false
|
||||
texture_format/s3tc_bptc=true
|
||||
texture_format/etc2_astc=true
|
||||
shader_baker/enabled=true
|
||||
binary_format/architecture="x86_64"
|
||||
ssh_remote_deploy/enabled=false
|
||||
ssh_remote_deploy/host="user@host_ip"
|
||||
ssh_remote_deploy/port="22"
|
||||
ssh_remote_deploy/extra_args_ssh=""
|
||||
ssh_remote_deploy/extra_args_scp=""
|
||||
ssh_remote_deploy/run_script="#!/usr/bin/env bash
|
||||
export DISPLAY=:0
|
||||
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
|
||||
\"{temp_dir}/{exe_name}\" {cmd_args}"
|
||||
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
|
||||
kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\")
|
||||
rm -rf \"{temp_dir}\""
|
||||
|
||||
[preset.1]
|
||||
|
||||
name="Linux Server"
|
||||
platform="Linux"
|
||||
runnable=false
|
||||
dedicated_server=true
|
||||
custom_features=""
|
||||
export_filter="customized"
|
||||
customized_files={
|
||||
"res://": "strip"
|
||||
}
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path=""
|
||||
patches=PackedStringArray()
|
||||
encryption_include_filters=""
|
||||
encryption_exclude_filters=""
|
||||
seed=0
|
||||
encrypt_pck=false
|
||||
encrypt_directory=false
|
||||
script_export_mode=2
|
||||
|
||||
[preset.1.options]
|
||||
|
||||
custom_template/debug=""
|
||||
custom_template/release=""
|
||||
debug/export_console_wrapper=1
|
||||
binary_format/embed_pck=false
|
||||
texture_format/s3tc_bptc=true
|
||||
texture_format/etc2_astc=true
|
||||
shader_baker/enabled=true
|
||||
binary_format/architecture="x86_64"
|
||||
ssh_remote_deploy/enabled=false
|
||||
ssh_remote_deploy/host="user@host_ip"
|
||||
ssh_remote_deploy/port="22"
|
||||
ssh_remote_deploy/extra_args_ssh=""
|
||||
ssh_remote_deploy/extra_args_scp=""
|
||||
ssh_remote_deploy/run_script="#!/usr/bin/env bash
|
||||
export DISPLAY=:0
|
||||
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
|
||||
\"{temp_dir}/{exe_name}\" {cmd_args}"
|
||||
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
|
||||
kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\")
|
||||
rm -rf \"{temp_dir}\""
|
||||
BIN
tests/test_project/fonts/librequake_conchars.webp
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
25
tests/test_project/fonts/librequake_conchars.webp.import
Normal file
@@ -0,0 +1,25 @@
|
||||
[remap]
|
||||
|
||||
importer="font_data_image"
|
||||
type="FontFile"
|
||||
uid="uid://xqvnherns475"
|
||||
path="res://.godot/imported/librequake_conchars.webp-b49c596b50ab310e0a6edef9d4972538.fontdata"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://fonts/librequake_conchars.webp"
|
||||
dest_files=["res://.godot/imported/librequake_conchars.webp-b49c596b50ab310e0a6edef9d4972538.fontdata"]
|
||||
|
||||
[params]
|
||||
|
||||
character_ranges=PackedStringArray("0-127")
|
||||
kerning_pairs=PackedStringArray()
|
||||
columns=16
|
||||
rows=8
|
||||
image_margin=Rect2i(0, 0, 0, 0)
|
||||
character_margin=Rect2i(1, 0, 1, 0)
|
||||
ascent=0
|
||||
descent=0
|
||||
fallbacks=[]
|
||||
compress=true
|
||||
scaling_mode=1
|
||||
BIN
tests/test_project/fonts/open_sans_semi_bold.woff2
Normal file
36
tests/test_project/fonts/open_sans_semi_bold.woff2.import
Normal file
@@ -0,0 +1,36 @@
|
||||
[remap]
|
||||
|
||||
importer="font_data_dynamic"
|
||||
type="FontFile"
|
||||
uid="uid://csxech2okyjwy"
|
||||
path="res://.godot/imported/open_sans_semi_bold.woff2-d5a7473a52e86ca3bc41d89167e800a7.fontdata"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://fonts/open_sans_semi_bold.woff2"
|
||||
dest_files=["res://.godot/imported/open_sans_semi_bold.woff2-d5a7473a52e86ca3bc41d89167e800a7.fontdata"]
|
||||
|
||||
[params]
|
||||
|
||||
Rendering=null
|
||||
antialiasing=1
|
||||
generate_mipmaps=false
|
||||
disable_embedded_bitmaps=true
|
||||
multichannel_signed_distance_field=false
|
||||
msdf_pixel_range=8
|
||||
msdf_size=48
|
||||
allow_system_fallback=true
|
||||
force_autohinter=false
|
||||
modulate_color_glyphs=false
|
||||
hinting=1
|
||||
subpixel_positioning=4
|
||||
keep_rounding_remainders=true
|
||||
oversampling=0.0
|
||||
Fallbacks=null
|
||||
fallbacks=[]
|
||||
Compress=null
|
||||
compress=true
|
||||
preload=[]
|
||||
language_support={}
|
||||
script_support={}
|
||||
opentype_features={}
|
||||
BIN
tests/test_project/fonts/open_sans_semi_bold_lcd.woff2
Normal file
@@ -0,0 +1,36 @@
|
||||
[remap]
|
||||
|
||||
importer="font_data_dynamic"
|
||||
type="FontFile"
|
||||
uid="uid://bk8vlq27gqm5w"
|
||||
path="res://.godot/imported/open_sans_semi_bold_lcd.woff2-24a71b549f3a1278fc44ee881e980d0a.fontdata"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://fonts/open_sans_semi_bold_lcd.woff2"
|
||||
dest_files=["res://.godot/imported/open_sans_semi_bold_lcd.woff2-24a71b549f3a1278fc44ee881e980d0a.fontdata"]
|
||||
|
||||
[params]
|
||||
|
||||
Rendering=null
|
||||
antialiasing=2
|
||||
generate_mipmaps=false
|
||||
disable_embedded_bitmaps=true
|
||||
multichannel_signed_distance_field=false
|
||||
msdf_pixel_range=8
|
||||
msdf_size=48
|
||||
allow_system_fallback=true
|
||||
force_autohinter=false
|
||||
modulate_color_glyphs=false
|
||||
hinting=1
|
||||
subpixel_positioning=4
|
||||
keep_rounding_remainders=true
|
||||
oversampling=0.0
|
||||
Fallbacks=null
|
||||
fallbacks=[]
|
||||
Compress=null
|
||||
compress=true
|
||||
preload=[]
|
||||
language_support={}
|
||||
script_support={}
|
||||
opentype_features={}
|
||||
BIN
tests/test_project/fonts/open_sans_semi_bold_msdf.woff2
Normal file
@@ -0,0 +1,36 @@
|
||||
[remap]
|
||||
|
||||
importer="font_data_dynamic"
|
||||
type="FontFile"
|
||||
uid="uid://tknjgv031ofo"
|
||||
path="res://.godot/imported/open_sans_semi_bold_msdf.woff2-9059d25061259fb486b8142b6cc39d7d.fontdata"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://fonts/open_sans_semi_bold_msdf.woff2"
|
||||
dest_files=["res://.godot/imported/open_sans_semi_bold_msdf.woff2-9059d25061259fb486b8142b6cc39d7d.fontdata"]
|
||||
|
||||
[params]
|
||||
|
||||
Rendering=null
|
||||
antialiasing=1
|
||||
generate_mipmaps=false
|
||||
disable_embedded_bitmaps=true
|
||||
multichannel_signed_distance_field=true
|
||||
msdf_pixel_range=10
|
||||
msdf_size=48
|
||||
allow_system_fallback=true
|
||||
force_autohinter=false
|
||||
modulate_color_glyphs=false
|
||||
hinting=1
|
||||
subpixel_positioning=4
|
||||
keep_rounding_remainders=true
|
||||
oversampling=0.0
|
||||
Fallbacks=null
|
||||
fallbacks=[]
|
||||
Compress=null
|
||||
compress=true
|
||||
preload=[]
|
||||
language_support={}
|
||||
script_support={}
|
||||
opentype_features={}
|
||||
13
tests/test_project/fr.po
Normal file
@@ -0,0 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
msgid "Text"
|
||||
msgstr "Texte (i18n is working)"
|
||||
BIN
tests/test_project/icons/mipmaps/basis_universal.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
40
tests/test_project/icons/mipmaps/basis_universal.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cfsfo1hd47p4e"
|
||||
path="res://.godot/imported/basis_universal.png-2fe654f1274c9a49194696216efe5ab8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/basis_universal.png"
|
||||
dest_files=["res://.godot/imported/basis_universal.png-2fe654f1274c9a49194696216efe5ab8.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=4
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/mipmaps/basis_universal_normal.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://0uyoailtdgnl"
|
||||
path="res://.godot/imported/basis_universal_normal.png-f5fb66e3a4512e1a1be7ee2a3a2ede25.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/basis_universal_normal.png"
|
||||
dest_files=["res://.godot/imported/basis_universal_normal.png-f5fb66e3a4512e1a1be7ee2a3a2ede25.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=4
|
||||
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=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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/mipmaps/lossless.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
40
tests/test_project/icons/mipmaps/lossless.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dicwkkumqt554"
|
||||
path="res://.godot/imported/lossless.png-0339a59f5e09b9eeef98f0637828ff94.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/lossless.png"
|
||||
dest_files=["res://.godot/imported/lossless.png-0339a59f5e09b9eeef98f0637828ff94.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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/mipmaps/lossy.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
40
tests/test_project/icons/mipmaps/lossy.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b2401ybgohi3f"
|
||||
path="res://.godot/imported/lossy.png-358c9749c82035c443b7cedc5c0ff4c9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/lossy.png"
|
||||
dest_files=["res://.godot/imported/lossy.png-358c9749c82035c443b7cedc5c0ff4c9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=1
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7000000000000001
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/mipmaps/vram_compressed.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
42
tests/test_project/icons/mipmaps/vram_compressed.png.import
Normal file
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dq4igdbf63fs"
|
||||
path.s3tc="res://.godot/imported/vram_compressed.png-27bc25cf15a9a8830ddfab447c3183a9.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/vram_compressed.png-27bc25cf15a9a8830ddfab447c3183a9.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/vram_compressed.png"
|
||||
dest_files=["res://.godot/imported/vram_compressed.png-27bc25cf15a9a8830ddfab447c3183a9.s3tc.ctex", "res://.godot/imported/vram_compressed.png-27bc25cf15a9a8830ddfab447c3183a9.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=33
|
||||
detect_3d/compress_to=1
|
||||
|
After Width: | Height: | Size: 7.4 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://05nuuph4c8fg"
|
||||
path.bptc="res://.godot/imported/vram_compressed_high_quality.png-a5e79b52f5cbbd1f11472f311a6fdadd.bptc.ctex"
|
||||
path.astc="res://.godot/imported/vram_compressed_high_quality.png-a5e79b52f5cbbd1f11472f311a6fdadd.astc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/vram_compressed_high_quality.png"
|
||||
dest_files=["res://.godot/imported/vram_compressed_high_quality.png-a5e79b52f5cbbd1f11472f311a6fdadd.bptc.ctex", "res://.godot/imported/vram_compressed_high_quality.png-a5e79b52f5cbbd1f11472f311a6fdadd.astc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=true
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/mipmaps/vram_compressed_normal.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cm73yp727fpnj"
|
||||
path.s3tc="res://.godot/imported/vram_compressed_normal.png-fd7d59d46e00a9262b4d304d2cd38e25.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/vram_compressed_normal.png-fd7d59d46e00a9262b4d304d2cd38e25.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/vram_compressed_normal.png"
|
||||
dest_files=["res://.godot/imported/vram_compressed_normal.png-fd7d59d46e00a9262b4d304d2cd38e25.s3tc.ctex", "res://.godot/imported/vram_compressed_normal.png-fd7d59d46e00a9262b4d304d2cd38e25.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=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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/mipmaps/vram_uncompressed.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://q81gand1q5mw"
|
||||
path="res://.godot/imported/vram_uncompressed.png-fdd324d561d45b600efb990e6604a2d7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/mipmaps/vram_uncompressed.png"
|
||||
dest_files=["res://.godot/imported/vram_uncompressed.png-fdd324d561d45b600efb990e6604a2d7.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=3
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/no_mipmaps/basis_universal.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c64e7qcvnq137"
|
||||
path="res://.godot/imported/basis_universal.png-5ba19f4f1fd5c393956d57ee72c99b0b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/basis_universal.png"
|
||||
dest_files=["res://.godot/imported/basis_universal.png-5ba19f4f1fd5c393956d57ee72c99b0b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=4
|
||||
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=false
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/no_mipmaps/basis_universal_normal.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bmga5157sqc6n"
|
||||
path="res://.godot/imported/basis_universal_normal.png-b03504be40172bbdf7cccc0fc508f7fe.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/basis_universal_normal.png"
|
||||
dest_files=["res://.godot/imported/basis_universal_normal.png-b03504be40172bbdf7cccc0fc508f7fe.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=4
|
||||
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=false
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/no_mipmaps/lossless.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
40
tests/test_project/icons/no_mipmaps/lossless.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dl8xnefffdby"
|
||||
path="res://.godot/imported/lossless.png-bbb9a1c89cb8cf25dd846a3269c14043.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/lossless.png"
|
||||
dest_files=["res://.godot/imported/lossless.png-bbb9a1c89cb8cf25dd846a3269c14043.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=false
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/no_mipmaps/lossy.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
40
tests/test_project/icons/no_mipmaps/lossy.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://blg0m3t2n286k"
|
||||
path="res://.godot/imported/lossy.png-396494fec99d4654e59837f000c0ca1f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/lossy.png"
|
||||
dest_files=["res://.godot/imported/lossy.png-396494fec99d4654e59837f000c0ca1f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=1
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7000000000000001
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/no_mipmaps/vram_compressed.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bv42msyhcqp66"
|
||||
path.s3tc="res://.godot/imported/vram_compressed.png-f026109a07013a2f144d203aab143c29.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/vram_compressed.png-f026109a07013a2f144d203aab143c29.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/vram_compressed.png"
|
||||
dest_files=["res://.godot/imported/vram_compressed.png-f026109a07013a2f144d203aab143c29.s3tc.ctex", "res://.godot/imported/vram_compressed.png-f026109a07013a2f144d203aab143c29.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=false
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
|
After Width: | Height: | Size: 7.4 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://depsvcgxuelvq"
|
||||
path.bptc="res://.godot/imported/vram_compressed_high_quality.png-beda223c20ac478eb3bf6e8c1ee63a63.bptc.ctex"
|
||||
path.astc="res://.godot/imported/vram_compressed_high_quality.png-beda223c20ac478eb3bf6e8c1ee63a63.astc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/vram_compressed_high_quality.png"
|
||||
dest_files=["res://.godot/imported/vram_compressed_high_quality.png-beda223c20ac478eb3bf6e8c1ee63a63.bptc.ctex", "res://.godot/imported/vram_compressed_high_quality.png-beda223c20ac478eb3bf6e8c1ee63a63.astc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=true
|
||||
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=false
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/no_mipmaps/vram_compressed_normal.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://liq8y581a31g"
|
||||
path.s3tc="res://.godot/imported/vram_compressed_normal.png-7deec0cf5800af74d5cb0f62521e1dea.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/vram_compressed_normal.png-7deec0cf5800af74d5cb0f62521e1dea.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/vram_compressed_normal.png"
|
||||
dest_files=["res://.godot/imported/vram_compressed_normal.png-7deec0cf5800af74d5cb0f62521e1dea.s3tc.ctex", "res://.godot/imported/vram_compressed_normal.png-7deec0cf5800af74d5cb0f62521e1dea.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=false
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
BIN
tests/test_project/icons/no_mipmaps/vram_uncompressed.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c406hrxdkfs5b"
|
||||
path="res://.godot/imported/vram_uncompressed.png-590c00f1d4295b9821001f4b3d95b401.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://icons/no_mipmaps/vram_uncompressed.png"
|
||||
dest_files=["res://.godot/imported/vram_uncompressed.png-590c00f1d4295b9821001f4b3d95b401.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=3
|
||||
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=false
|
||||
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=33
|
||||
detect_3d/compress_to=1
|
||||
19
tests/test_project/locale.csv.import
Normal file
@@ -0,0 +1,19 @@
|
||||
[remap]
|
||||
|
||||
importer="csv_translation"
|
||||
type="Translation"
|
||||
uid="uid://b6wn36detmqdv"
|
||||
|
||||
[deps]
|
||||
|
||||
files=["res://locale.en.translation", "res://locale.fr.translation"]
|
||||
|
||||
source_file="res://locale.csv"
|
||||
dest_files=["res://locale.en.translation", "res://locale.fr.translation"]
|
||||
|
||||
[params]
|
||||
|
||||
compress=true
|
||||
delimiter=0
|
||||
unescape_keys=false
|
||||
unescape_translations=true
|
||||
5
tests/test_project/locale.pot
Normal file
@@ -0,0 +1,5 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
BIN
tests/test_project/polyhaven/food_apple_01/food_apple_01.bin
Normal file
115
tests/test_project/polyhaven/food_apple_01/food_apple_01_1k.dae
Normal file
@@ -0,0 +1,48 @@
|
||||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://sqfcstxwjv4i"
|
||||
path="res://.godot/imported/food_apple_01_1k.dae-83d71dbc11ce6c2f55330ab7097a9d53.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/food_apple_01/food_apple_01_1k.dae"
|
||||
dest_files=["res://.godot/imported/food_apple_01_1k.dae-83d71dbc11ce6c2f55330ab7097a9d53.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name="Apple"
|
||||
nodes/root_script=null
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=10.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={
|
||||
"materials": {
|
||||
"food_apple_01": {
|
||||
"use_external/enabled": true,
|
||||
"use_external/fallback_path": "res://polyhaven/food_apple_01/textures/food_apple_01.tres",
|
||||
"use_external/path": "uid://c5o3j3qc6tb8x"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
tests/test_project/polyhaven/food_apple_01/food_apple_01_1k.fbx
Normal file
@@ -0,0 +1,44 @@
|
||||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://d0gxnwgm0fcu3"
|
||||
path="res://.godot/imported/food_apple_01_1k.fbx-faac95fa5b9244ab7f712d2508513dda.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/food_apple_01/food_apple_01_1k.fbx"
|
||||
dest_files=["res://.godot/imported/food_apple_01_1k.fbx-faac95fa5b9244ab7f712d2508513dda.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name="Apple"
|
||||
nodes/root_script=null
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=10.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=true
|
||||
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={}
|
||||
fbx/importer=0
|
||||
fbx/allow_geometry_helper_nodes=false
|
||||
fbx/embedded_image_handling=1
|
||||
fbx/naming_version=2
|
||||
156
tests/test_project/polyhaven/food_apple_01/food_apple_01_1k.gltf
Normal file
@@ -0,0 +1,156 @@
|
||||
{
|
||||
"asset": {
|
||||
"generator": "Khronos glTF Blender I/O v1.6.16",
|
||||
"version": "2.0"
|
||||
},
|
||||
"scene": 0,
|
||||
"scenes": [
|
||||
{
|
||||
"name": "Scene",
|
||||
"nodes": [
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"nodes": [
|
||||
{
|
||||
"mesh": 0,
|
||||
"name": "food_apple_01"
|
||||
}
|
||||
],
|
||||
"materials": [
|
||||
{
|
||||
"doubleSided": true,
|
||||
"name": "food_apple_01",
|
||||
"normalTexture": {
|
||||
"index": 0
|
||||
},
|
||||
"pbrMetallicRoughness": {
|
||||
"baseColorTexture": {
|
||||
"index": 1
|
||||
},
|
||||
"metallicFactor": 0,
|
||||
"metallicRoughnessTexture": {
|
||||
"index": 2
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"meshes": [
|
||||
{
|
||||
"name": "apple_50k_uv.001",
|
||||
"primitives": [
|
||||
{
|
||||
"attributes": {
|
||||
"POSITION": 0,
|
||||
"NORMAL": 1,
|
||||
"TEXCOORD_0": 2
|
||||
},
|
||||
"indices": 3,
|
||||
"material": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"textures": [
|
||||
{
|
||||
"sampler": 0,
|
||||
"source": 0
|
||||
},
|
||||
{
|
||||
"sampler": 0,
|
||||
"source": 1
|
||||
},
|
||||
{
|
||||
"sampler": 0,
|
||||
"source": 2
|
||||
}
|
||||
],
|
||||
"images": [
|
||||
{
|
||||
"mimeType": "image/jpeg",
|
||||
"name": "food_apple_01_nor_gl",
|
||||
"uri": "textures/food_apple_01_nor_gl_1k.jpg"
|
||||
},
|
||||
{
|
||||
"mimeType": "image/jpeg",
|
||||
"name": "food_apple_01_diff",
|
||||
"uri": "textures/food_apple_01_diff_1k.jpg"
|
||||
},
|
||||
{
|
||||
"mimeType": "image/jpeg",
|
||||
"name": "food_apple_01_rough",
|
||||
"uri": "textures/food_apple_01_rough_1k.jpg"
|
||||
}
|
||||
],
|
||||
"accessors": [
|
||||
{
|
||||
"bufferView": 0,
|
||||
"componentType": 5126,
|
||||
"count": 4019,
|
||||
"max": [
|
||||
0.04917982220649719,
|
||||
0.08536732196807861,
|
||||
0.05008470639586449
|
||||
],
|
||||
"min": [
|
||||
-0.04838135838508606,
|
||||
-0.000022622070900979452,
|
||||
-0.04581700265407562
|
||||
],
|
||||
"type": "VEC3"
|
||||
},
|
||||
{
|
||||
"bufferView": 1,
|
||||
"componentType": 5126,
|
||||
"count": 4019,
|
||||
"type": "VEC3"
|
||||
},
|
||||
{
|
||||
"bufferView": 2,
|
||||
"componentType": 5126,
|
||||
"count": 4019,
|
||||
"type": "VEC2"
|
||||
},
|
||||
{
|
||||
"bufferView": 3,
|
||||
"componentType": 5123,
|
||||
"count": 21036,
|
||||
"type": "SCALAR"
|
||||
}
|
||||
],
|
||||
"bufferViews": [
|
||||
{
|
||||
"buffer": 0,
|
||||
"byteLength": 48228,
|
||||
"byteOffset": 0
|
||||
},
|
||||
{
|
||||
"buffer": 0,
|
||||
"byteLength": 48228,
|
||||
"byteOffset": 48228
|
||||
},
|
||||
{
|
||||
"buffer": 0,
|
||||
"byteLength": 32152,
|
||||
"byteOffset": 96456
|
||||
},
|
||||
{
|
||||
"buffer": 0,
|
||||
"byteLength": 42072,
|
||||
"byteOffset": 128608
|
||||
}
|
||||
],
|
||||
"samplers": [
|
||||
{
|
||||
"magFilter": 9729,
|
||||
"minFilter": 9987
|
||||
}
|
||||
],
|
||||
"buffers": [
|
||||
{
|
||||
"byteLength": 170680,
|
||||
"uri": "food_apple_01.bin"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://dc3vb3xnmq0f4"
|
||||
path="res://.godot/imported/food_apple_01_1k.gltf-c41d011e62bc6c07cb41722fdf6e4c31.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/food_apple_01/food_apple_01_1k.gltf"
|
||||
dest_files=["res://.godot/imported/food_apple_01_1k.gltf-c41d011e62bc6c07cb41722fdf6e4c31.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name="Apple"
|
||||
nodes/root_script=null
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=10.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
|
||||
@@ -0,0 +1,18 @@
|
||||
# Blender 4.4.3 MTL File: 'food_apple_01_1k.blend'
|
||||
# www.blender.org
|
||||
|
||||
newmtl food_apple_01
|
||||
Ks 0.500000 0.500000 0.500000
|
||||
Ke 0.000000 0.000000 0.000000
|
||||
Ni 1.450000
|
||||
d 1.000000
|
||||
illum 2
|
||||
Pm 0.000000
|
||||
Ps 0.000000
|
||||
Pc 0.000000
|
||||
Pcr 0.030000
|
||||
aniso 0.000000
|
||||
anisor 0.000000
|
||||
map_Kd textures/food_apple_01_diff_1k.jpg
|
||||
map_Pr textures/food_apple_01_rough_1k.jpg
|
||||
map_Bump -bm 1.000000 textures/food_apple_01_nor_gl_1k.exr
|
||||
@@ -0,0 +1,11 @@
|
||||
[gd_resource type="StandardMaterial3D" load_steps=4 format=3 uid="uid://c5o3j3qc6tb8x"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://dwbfuck2q0ng5" path="res://polyhaven/food_apple_01/textures/food_apple_01_diff_1k.jpg" id="1_0ct2l"]
|
||||
[ext_resource type="Texture2D" uid="uid://dat8ihys6xevt" path="res://polyhaven/food_apple_01/textures/food_apple_01_nor_gl_1k.jpg" id="2_cdw1x"]
|
||||
[ext_resource type="Texture2D" uid="uid://05n3s1n73lv3" path="res://polyhaven/food_apple_01/textures/food_apple_01_rough_1k.jpg" id="3_hlvpx"]
|
||||
|
||||
[resource]
|
||||
albedo_texture = ExtResource("1_0ct2l")
|
||||
roughness_texture = ExtResource("3_hlvpx")
|
||||
normal_enabled = true
|
||||
normal_texture = ExtResource("2_cdw1x")
|
||||
|
After Width: | Height: | Size: 180 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dwbfuck2q0ng5"
|
||||
path.s3tc="res://.godot/imported/food_apple_01_diff_1k.jpg-052e07139a64e6279673e9a710a6d209.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/food_apple_01_diff_1k.jpg-052e07139a64e6279673e9a710a6d209.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/food_apple_01/textures/food_apple_01_diff_1k.jpg"
|
||||
dest_files=["res://.godot/imported/food_apple_01_diff_1k.jpg-052e07139a64e6279673e9a710a6d209.s3tc.ctex", "res://.godot/imported/food_apple_01_diff_1k.jpg-052e07139a64e6279673e9a710a6d209.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
|
||||
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b2narbkcjmem0"
|
||||
path.bptc="res://.godot/imported/food_apple_01_nor_gl_1k.exr-022d48c1756114440c7dcc62c9dcc98f.bptc.ctex"
|
||||
path.astc="res://.godot/imported/food_apple_01_nor_gl_1k.exr-022d48c1756114440c7dcc62c9dcc98f.astc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/food_apple_01/textures/food_apple_01_nor_gl_1k.exr"
|
||||
dest_files=["res://.godot/imported/food_apple_01_nor_gl_1k.exr-022d48c1756114440c7dcc62c9dcc98f.bptc.ctex", "res://.godot/imported/food_apple_01_nor_gl_1k.exr-022d48c1756114440c7dcc62c9dcc98f.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=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=1
|
||||
roughness/src_normal="res://polyhaven/food_apple_01/textures/food_apple_01_nor_gl_1k.exr"
|
||||
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
|
||||
|
After Width: | Height: | Size: 62 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dat8ihys6xevt"
|
||||
path.s3tc="res://.godot/imported/food_apple_01_nor_gl_1k.jpg-757e166a0047d9e324e5547b4fa58be3.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/food_apple_01_nor_gl_1k.jpg-757e166a0047d9e324e5547b4fa58be3.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/food_apple_01/textures/food_apple_01_nor_gl_1k.jpg"
|
||||
dest_files=["res://.godot/imported/food_apple_01_nor_gl_1k.jpg-757e166a0047d9e324e5547b4fa58be3.s3tc.ctex", "res://.godot/imported/food_apple_01_nor_gl_1k.jpg-757e166a0047d9e324e5547b4fa58be3.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://polyhaven/food_apple_01/textures/food_apple_01_nor_gl_1k.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
|
||||
|
After Width: | Height: | Size: 52 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://05n3s1n73lv3"
|
||||
path.s3tc="res://.godot/imported/food_apple_01_rough_1k.jpg-35d541711b2d7eb8d93bc956a1cc561e.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/food_apple_01_rough_1k.jpg-35d541711b2d7eb8d93bc956a1cc561e.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/food_apple_01/textures/food_apple_01_rough_1k.jpg"
|
||||
dest_files=["res://.godot/imported/food_apple_01_rough_1k.jpg-35d541711b2d7eb8d93bc956a1cc561e.s3tc.ctex", "res://.godot/imported/food_apple_01_rough_1k.jpg-35d541711b2d7eb8d93bc956a1cc561e.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
|
||||
21
tests/test_project/polyhaven/textures/stone_tile_wall.tres
Normal file
@@ -0,0 +1,21 @@
|
||||
[gd_resource type="ORMMaterial3D" load_steps=5 format=3 uid="uid://cy5w7agfa85hq"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://nc8nd6w5ed6x" path="res://polyhaven/textures/stone_tile_wall_diff_1k.jpg" id="1_1a4e0"]
|
||||
[ext_resource type="Texture2D" uid="uid://dh1n5he71p1s4" path="res://polyhaven/textures/stone_tile_wall_disp_1k.jpg" id="2_k7iu0"]
|
||||
[ext_resource type="Texture2D" uid="uid://b3s5tyjuo3dm3" path="res://polyhaven/textures/stone_tile_wall_nor_gl_1k.jpg" id="3_ivhe1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dfaluoxkvbtfl" path="res://polyhaven/textures/stone_tile_wall_arm_1k.jpg" id="4_ddlbs"]
|
||||
|
||||
[resource]
|
||||
albedo_texture = ExtResource("1_1a4e0")
|
||||
orm_texture = ExtResource("4_ddlbs")
|
||||
normal_enabled = true
|
||||
normal_texture = ExtResource("3_ivhe1")
|
||||
ao_enabled = true
|
||||
ao_light_affect = 1.0
|
||||
heightmap_enabled = true
|
||||
heightmap_deep_parallax = true
|
||||
heightmap_min_layers = 8
|
||||
heightmap_max_layers = 32
|
||||
heightmap_texture = ExtResource("2_k7iu0")
|
||||
uv1_scale = Vector3(4, 4, 4)
|
||||
texture_filter = 5
|
||||
BIN
tests/test_project/polyhaven/textures/stone_tile_wall_arm_1k.jpg
Normal file
|
After Width: | Height: | Size: 296 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dfaluoxkvbtfl"
|
||||
path.s3tc="res://.godot/imported/stone_tile_wall_arm_1k.jpg-15031c28f9d803d3925ebe657b2711f1.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/stone_tile_wall_arm_1k.jpg-15031c28f9d803d3925ebe657b2711f1.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/textures/stone_tile_wall_arm_1k.jpg"
|
||||
dest_files=["res://.godot/imported/stone_tile_wall_arm_1k.jpg-15031c28f9d803d3925ebe657b2711f1.s3tc.ctex", "res://.godot/imported/stone_tile_wall_arm_1k.jpg-15031c28f9d803d3925ebe657b2711f1.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
|
||||
|
After Width: | Height: | Size: 625 KiB |
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://nc8nd6w5ed6x"
|
||||
path="res://.godot/imported/stone_tile_wall_diff_1k.jpg-ed803a36f3325fb83d2aab044196597b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/textures/stone_tile_wall_diff_1k.jpg"
|
||||
dest_files=["res://.godot/imported/stone_tile_wall_diff_1k.jpg-ed803a36f3325fb83d2aab044196597b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=4
|
||||
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
|
||||
|
After Width: | Height: | Size: 299 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dh1n5he71p1s4"
|
||||
path.s3tc="res://.godot/imported/stone_tile_wall_disp_1k.jpg-5789860ffd7a97bc25f3bef9904b6a88.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/stone_tile_wall_disp_1k.jpg-5789860ffd7a97bc25f3bef9904b6a88.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/textures/stone_tile_wall_disp_1k.jpg"
|
||||
dest_files=["res://.godot/imported/stone_tile_wall_disp_1k.jpg-5789860ffd7a97bc25f3bef9904b6a88.s3tc.ctex", "res://.godot/imported/stone_tile_wall_disp_1k.jpg-5789860ffd7a97bc25f3bef9904b6a88.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
|
||||
|
After Width: | Height: | Size: 665 KiB |
@@ -0,0 +1,42 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3s5tyjuo3dm3"
|
||||
path.s3tc="res://.godot/imported/stone_tile_wall_nor_gl_1k.jpg-836242a5b142c4d8fd192be925990f5e.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/stone_tile_wall_nor_gl_1k.jpg-836242a5b142c4d8fd192be925990f5e.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://polyhaven/textures/stone_tile_wall_nor_gl_1k.jpg"
|
||||
dest_files=["res://.godot/imported/stone_tile_wall_nor_gl_1k.jpg-836242a5b142c4d8fd192be925990f5e.s3tc.ctex", "res://.godot/imported/stone_tile_wall_nor_gl_1k.jpg-836242a5b142c4d8fd192be925990f5e.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://polyhaven/textures/stone_tile_wall_nor_gl_1k.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
|
||||
42
tests/test_project/project.godot
Normal file
@@ -0,0 +1,42 @@
|
||||
; Engine configuration file.
|
||||
; It's best edited using the editor UI and not directly,
|
||||
; since the parameters that go here are not all obvious.
|
||||
;
|
||||
; Format:
|
||||
; [section] ; section goes between []
|
||||
; param=value ; assign values to parameters
|
||||
|
||||
config_version=5
|
||||
|
||||
[application]
|
||||
|
||||
config/name="Test Project"
|
||||
config/description="Test project for continuous integration."
|
||||
config/version="1.0.0"
|
||||
run/main_scene="uid://dpkhlaxg5302f"
|
||||
config/features=PackedStringArray("4.6")
|
||||
|
||||
[display]
|
||||
|
||||
window/stretch/mode="canvas_items"
|
||||
window/stretch/aspect="expand"
|
||||
|
||||
[internationalization]
|
||||
|
||||
locale/translations=PackedStringArray("res://fr.po")
|
||||
|
||||
[rendering]
|
||||
|
||||
textures/vram_compression/import_etc2_astc=true
|
||||
textures/default_filters/anisotropic_filtering_level=4
|
||||
anti_aliasing/quality/msaa_3d=2
|
||||
anti_aliasing/quality/use_debanding=true
|
||||
textures/decals/filter=0
|
||||
anti_aliasing/quality/screen_space_aa=2
|
||||
|
||||
[shader_globals]
|
||||
|
||||
offset={
|
||||
"type": "vec3",
|
||||
"value": Vector3(0, 0, 1)
|
||||
}
|
||||
BIN
tests/test_project/test.exr
Normal file
30
tests/test_project/test.exr.import
Normal file
@@ -0,0 +1,30 @@
|
||||
[remap]
|
||||
|
||||
importer="2d_array_texture"
|
||||
type="CompressedTexture2DArray"
|
||||
uid="uid://ihkfx2q1u6ht"
|
||||
path.bptc="res://.godot/imported/test.exr-c2074adc031b4eb62ef608033f6d937a.bptc.ctexarray"
|
||||
path.astc="res://.godot/imported/test.exr-c2074adc031b4eb62ef608033f6d937a.astc.ctexarray"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://test.exr"
|
||||
dest_files=["res://.godot/imported/test.exr-c2074adc031b4eb62ef608033f6d937a.bptc.ctexarray", "res://.godot/imported/test.exr-c2074adc031b4eb62ef608033f6d937a.astc.ctexarray"]
|
||||
|
||||
[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/channel_pack=1
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
slices/horizontal=1
|
||||
slices/vertical=1
|
||||
5
tests/test_project/test.gd
Normal file
@@ -0,0 +1,5 @@
|
||||
extends Node
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
print_rich("[color=green]GDScript: OK")
|
||||
1
tests/test_project/test.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://bc807dp5e428
|
||||